Add short sha env

This commit is contained in:
Jakub Błaszczyk 2023-10-27 12:09:13 +02:00 committed by GitHub
parent 490b465936
commit ed3ea0e62c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,8 +127,8 @@ jobs:
uses: actions/checkout@v3
- name: Checkout dependencies
uses: ./.github/actions/deps-setup
- name: Test
run: make docker-build
- name: Build image
run: make docker-build-notest
release:
if: github.ref_type == 'tag'
@ -149,6 +149,10 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Set short SHA
shell: bash
run: |
echo "DOCKER_SHORT_TAG=${${{ github.sha }}:0:7}" >> $GITHUB_ENV
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with: