diff --git a/.github/workflows/frontend-release.yml b/.github/workflows/frontend-release.yml new file mode 100644 index 000000000..ee008b4c2 --- /dev/null +++ b/.github/workflows/frontend-release.yml @@ -0,0 +1,38 @@ +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: + images: | + concordium/ccdscan-frontend + tags: | + type=match,pattern=frontend/(.*) + - 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 }}