Skip to content

ci(actions): 👷 Fix reference commit #3

ci(actions): 👷 Fix reference commit

ci(actions): 👷 Fix reference commit #3

Workflow file for this run

name: Docker Publish Frontend
on:
push:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
outputs:
has_changes: ${{ steps.check_for_changes.outputs.has_changes }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install turbo
run: npm install -g [email protected] && npm install -g turbo-ignore
- name: Check for changes
id: check_for_changes
run: npx turbo-ignore frontend --fallback=HEAD^1 && echo "has_changes=false" >> "$GITHUB_OUTPUT" || echo "has_changes=true" >> "$GITHUB_OUTPUT"
build:
runs-on: ubuntu-latest
needs: check
if: needs.check.outputs.has_changes == 'true'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install turbo
run: npm install -g [email protected]
- name: Login to Docker
run: |
echo "${{ github.token }}" | docker login https://ghcr.io -u ${GITHUB_ACTOR} --password-stdin
- name: Create env file
run: |
touch build.env.local
echo KEYCLOAK_URL="https://auth.buildtheearth.net/realms/website" >> build.env.local
echo KEYCLOAK_ID="frontend" >> build.env.local
echo KEYCLOAK_SECRET="${{ secrets.KEYCLOAK_SECRET }}" >> build.env.local
echo NEXTAUTH_URL="https://buildtheearth.net" >> build.env.local
echo NEXTAUTH_SECRET="${{ secrets.NEXTAUTH_SECRET }}" >> build.env.local
echo NEXT_PUBLIC_API_URL="https://api.buildtheearth.net/api/v1" >> build.env.local
echo NEXT_PUBLIC_MAPBOX_TOKEN="${{ secrets.MAPBOX_TOKEN }}" >> build.env.local
echo PORT=3000 >> build.env.local
- name: Build the Docker image
run: docker build . --file Dockerfile --tag ghcr.io/buildtheearth/website-frontend:$(git rev-parse --short HEAD) --tag ghcr.io/buildtheearth/website-frontend:latest
- name: Docker push tag
run: docker push ghcr.io/buildtheearth/website-frontend:$(git rev-parse --short HEAD)
- name: Docker push latest
run: docker push ghcr.io/buildtheearth/website-frontend:latest