Merge pull request #788 from CodeForAfrica/fix/fix-failing-build #231
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: charterAFRICA | Deploy | DEV | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "apps/charterafrica/**" | |
- "Dockerfile" | |
- ".github/workflows/charterafrica-deploy-dev.yml" | |
# This allows a subsequently queued workflow run to interrupt previous runs | |
concurrency: | |
group: "${{ github.workflow }} @ ${{ github.ref }}" | |
cancel-in-progress: true | |
env: | |
DOKKU_REMOTE_URL: "ssh://[email protected]/charterafrica" | |
IMAGE_NAME: "codeforafrica/charterafrica-ui" | |
NEXT_PUBLIC_APP_URL: "https://charterafrica.dev.codeforafrica.org" | |
SENTRY_ENVIRONMENT: "development" | |
jobs: | |
deploy: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [20.14] | |
os: [ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
path: /tmp/.buildx-cache | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
- name: Build Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
build-args: | | |
MONGO_URL=${{ secrets.CHARTERAFRICA_MONGO_URL }} | |
NEXT_PUBLIC_APP_URL=${{ env.NEXT_PUBLIC_APP_URL }} | |
NEXT_PUBLIC_SENTRY_DSN=${{ secrets.CHARTERAFRICA_SENTRY_DSN }} | |
PAYLOAD_SECRET_KEY=${{ secrets.CHARTERAFRICA_PAYLOAD_SECRET_KEY }} | |
SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} | |
SENTRY_ENVIRONMENT=${{ env.SENTRY_ENVIRONMENT }} | |
SENTRY_ORG=${{ secrets.SENTRY_ORG }} | |
SENTRY_PROJECT=${{ secrets.CHARTERAFRICA_SENTRY_PROJECT }} | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
context: . | |
target: charterafrica-runner | |
push: true | |
tags: "${{ env.IMAGE_NAME }}:${{ github.sha }}" | |
# Temp fix | |
# https://github.com/docker/build-push-action/issues/252 | |
# https://github.com/moby/buildkit/issues/1896 | |
- name: Move cache | |
run: | | |
rm -rf /tmp/.buildx-cache | |
mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
- name: Push to Dokku | |
uses: dokku/[email protected] | |
with: | |
git_remote_url: ${{ env.DOKKU_REMOTE_URL }} | |
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} | |
deploy_docker_image: ${{ env.IMAGE_NAME }}:${{ github.sha }} |