| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- name: Build and push WebApp image
- on:
- push:
- # Publish semver tags as releases.
- tags: [ 'v*.*.*' ]
- pull_request:
- branches: [ "main" ]
- workflow_dispatch:
- env:
- REGISTRY: ghcr.io
- IMAGE_NAME: ${{ github.repository }}
- jobs:
- build-webapp:
- runs-on: ubuntu-latest
- permissions:
- packages: write
- contents: read
- steps:
- - run: |
- echo "The job was automatically triggered by a ${{ github.event_name }} event."
- echo "This job is now running on a ${{ runner.os }} server hosted by github!"
- echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- - name: Check out repository code
- uses: actions/checkout@v4
- - name: Set up QEMU
- uses: docker/setup-qemu-action@v3
- with:
- platforms: 'arm64,amd64'
- - name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v3
- - name: Log into registry ${{ env.REGISTRY }}
- if: github.event_name != 'pull_request'
- uses: docker/login-action@v3
- with:
- registry: ${{ env.REGISTRY }}
- username: ${{ github.actor }}
- password: ${{ secrets.GITHUB_TOKEN }}
- - name: Extract Docker metadata
- id: meta
- uses: docker/metadata-action@v5
- with:
- images: ${{ env.REGISTRY }}/dfir-iris/iriswebapp_app
- - name: Build and push
- uses: docker/build-push-action@v5
- with:
- context: .
- platforms: linux/amd64,linux/arm64
- push: ${{ github.event_name != 'pull_request' }} # Don't push on PR
- tags: ${{ steps.meta.outputs.tags }}
- labels: ${{ steps.meta.outputs.labels }}
- cache-from: type=gha
- cache-to: type=gha,mode=max
- file: docker/webApp/Dockerfile
|