Only pushing if merge on main #288
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: Build docker | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
build-docker: | |
name: Build D-Voting Docker images | |
runs-on: ubuntu-22.04 | |
env: | |
DockerTag: test | |
push: ${{ (github.ref == 'refs/heads/main') && 'true' || 'true' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set env | |
run: | | |
git describe --tags | |
echo "REACT_APP_VERSION=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV | |
echo "REACT_APP_BUILD=$(git describe --tags)" >> $GITHUB_ENV | |
echo "REACT_APP_BUILD_TIME=$(date)" >> $GITHUB_ENV | |
echo Pushing is ${{ env.push }} | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to GHCR | |
if: ${{ env.push == 'true' }} | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build Frontend | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: Dockerfiles/Dockerfile.frontend | |
platforms: linux/amd64 | |
build-args: | | |
REACT_APP_VERSION | |
REACT_APP_BUILD | |
REACT_APP_BUILD_TIME | |
push: ${{ env.push }} | |
tags: ghcr.io/c4dt/d-voting-frontend:${{ env.DockerTag }} | |
- name: Build Backend | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: Dockerfiles/Dockerfile.backend | |
platforms: linux/amd64 | |
push: ${{ env.push }} | |
tags: ghcr.io/c4dt/d-voting-backend:${{ env.DockerTag }} | |
- name: Build D-Voting | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: Dockerfiles/Dockerfile.dela | |
platforms: linux/amd64 | |
push: ${{ env.push }} | |
tags: ghcr.io/c4dt/d-voting-dela:${{ env.DockerTag }} |