We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfff110 commit f30cea7Copy full SHA for f30cea7
.github/workflows/docker.yml
@@ -39,11 +39,15 @@ jobs:
39
with:
40
username: ${{ secrets.DOCKERHUB_USERNAME }}
41
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
42
+ - name: Get short commit SHA1
43
+ shell: bash
44
+ run: |
45
+ echo "short_hash=$(git rev-parse --short "$GITHUB_SHA")" >> "$GITHUB_ENV"
46
- name: Build and push
47
uses: docker/build-push-action@v5
48
if: ${{ steps.changed-files.outputs.any_changed == 'true' }}
49
50
context: .
51
platforms: linux/amd64,linux/arm64/v8
52
push: ${{ github.event_name == 'push' }}
- tags: sysprog21/rv32emu:latest
53
+ tags: sysprog21/rv32emu:latest, sysprog21/rv32emu:${{ env.short_hash }}
0 commit comments