Do not redirect on click if explore page is not defined #83
Workflow file for this run
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: Climate Mapped Africa | Deploy | DEV | |
on: | |
push: | |
branches: [ft/climatemapped-build-fix] | |
paths: | |
- "apps/climatemappedafrica/**" | |
- "Dockerfile" | |
- ".github/workflows/climatemappedafrica-deploy-dev.yml" | |
concurrency: | |
group: "${{ github.workflow }} @ ${{ github.ref }}" | |
cancel-in-progress: true | |
env: | |
DOKKU_REMOTE_BRANCH: "master" | |
DOKKU_REMOTE_URL: "ssh://[email protected]" | |
IMAGE_NAME: "codeforafrica/climatemappedafrica-ui" | |
NEXT_PUBLIC_APP_URL: "https://climatemapped-africa.dev.codeforafrica.org" | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
APP_NAME: climatemapped-africa-ui | |
jobs: | |
deploy: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [20.16] | |
os: [ubuntu-latest] | |
steps: | |
- name: Cloning repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# Add support for more platforms with QEMU (optional) | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Cache Docker layers | |
uses: actions/cache@v3 | |
with: | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
path: /tmp/.buildx-cache | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
- name: Build Docker image | |
uses: docker/build-push-action@v3 | |
with: | |
build-args: | | |
HURUMAP_API_URL=${{ secrets.CLIMATEMAPPEDAFRICA_HURUMAP_API_URL }} | |
MONGO_URL=${{ secrets.CLIMATEMAPPEDAFRICA_MONGO_URL }} | |
NEXT_PUBLIC_APP_URL=${{ env.NEXT_PUBLIC_APP_URL }} | |
PAYLOAD_SECRET=${{ secrets.CLIMATEMAPPEDAFRICA_PAYLOAD_SECRET }} | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
context: . | |
platforms: linux/arm64 | |
target: climatemappedafrica-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 }}/${{ env.APP_NAME }} | |
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} | |
deploy_docker_image: ${{ env.IMAGE_NAME }}:${{ github.sha }} |