ci: fix RELEASE_TAG env inject

This commit is contained in:
Mohamed Sohail 2024-02-05 17:14:21 +03:00
parent a6ff999a80
commit 8cb78eb2db
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D
1 changed files with 7 additions and 2 deletions

View File

@ -35,16 +35,21 @@ jobs:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set outputs
run: |
echo "RELEASE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Build and push image
uses: docker/build-push-action@v2
with:
context: ./
file: ./Dockerfile
platforms: linux/amd64
push: true
push: true
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
tags: |
ghcr.io/grassrootseconomics/farmstar-survey-backend/farmstar-survey-backend:latest
ghcr.io/grassrootseconomics/farmstar-survey-backend/farmstar-survey-backend:${{ env.RELEASE_TAG }}