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 310b780 commit bab89ecCopy full SHA for bab89ec
.github/workflows/github.yml
@@ -20,8 +20,9 @@ jobs:
20
password: ${{ secrets.GITHUB_TOKEN }}
21
- name: Build the container image
22
run: |
23
- BUILD_DATE="$(date +%s)"
24
- docker build . --file Dockerfile --tag ghcr.io/ii/emacs-coder:"$BUILD_DATE"
+ export BUILD_DATE="$(date +%s)"
+ docker build . --file Dockerfile --tag ghcr.io/ii/emacs-coder:$BUILD_DATE --tag ghcr.io/ii/emacs-coder:latest
25
- name: Push the container image
26
27
- docker push ghcr.io/ii/emacs-coder:"$BUILD_DATE"
+ docker push ghcr.io/ii/emacs-coder:$BUILD_DATE
28
+ docker push ghcr.io/ii/emacs-coder:latest
0 commit comments