Add workflow for releasing frontend #3
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: Make release of the frontend | |
on: | |
push: | |
tags: | |
- frontend/* | |
jobs: | |
publish-docker-image: | |
runs-on: ubuntu-latest | |
environment: release | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
flavor: latest=false | |
images: concordium/ccdscan-frontend | |
tags: type=match,pattern=frontend/(.*),group=1 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./frontend | |
file: ./frontend/Dockerfile | |
push: false | |
platforms: linux/amd64 | |
tags: ${{ steps.meta.outputs.tag }} | |
labels: ${{ steps.meta.outputs.labels }} |