Skip to content

Commit f30cea7

Browse files
committed
CI: Generate Docker image with commit SHA1
Close #287
1 parent bfff110 commit f30cea7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/docker.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,15 @@ jobs:
3939
with:
4040
username: ${{ secrets.DOCKERHUB_USERNAME }}
4141
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"
4246
- name: Build and push
4347
uses: docker/build-push-action@v5
4448
if: ${{ steps.changed-files.outputs.any_changed == 'true' }}
4549
with:
4650
context: .
4751
platforms: linux/amd64,linux/arm64/v8
4852
push: ${{ github.event_name == 'push' }}
49-
tags: sysprog21/rv32emu:latest
53+
tags: sysprog21/rv32emu:latest, sysprog21/rv32emu:${{ env.short_hash }}

0 commit comments

Comments
 (0)