We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ac503f commit e3094fbCopy full SHA for e3094fb
.github/workflows/build-docker-image.yml
@@ -35,12 +35,16 @@ jobs:
35
# Work in an empty directory to avoid unnecessary copying.
36
mkdir context
37
38
+ - name: Get current date
39
+ id: date
40
+ run: echo "::set-output name=timestamp::$(date +'%Y%m%d')"
41
+
42
- name: Build and push to registry
43
uses: docker/build-push-action@v6
44
with:
45
context: context
46
push: true
- tags: ghcr.io/antmicro/cores-veer-el2:latest
47
+ tags: ghcr.io/antmicro/cores-veer-el2:${{ steps.data.outputs.timestamp }}
48
file: .github/Dockerfile
49
build-args: |
50
VERILATOR_VERSION=${{ env.VERILATOR_VERSION }}
0 commit comments