We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dcbd15 commit ceaaf34Copy full SHA for ceaaf34
.github/workflows/publish.yml
@@ -21,6 +21,10 @@ jobs:
21
steps:
22
- name: Checkout repository
23
uses: actions/checkout@v4
24
+ - name: Write date file
25
+ run: |
26
+ date -Idate > ${{ inputs.image }}/date.txt
27
+ shell: bash
28
- name: Log in to the Container registry
29
uses: docker/login-action@v3
30
with:
rig-ubuntu/Dockerfile
@@ -1,6 +1,8 @@
1
# Before changing this to 24.04, check if pak install from binary
2
FROM ubuntu:22.04
3
4
+COPY date.txt /date.txt
5
+
6
RUN apt-get update && apt-get install -y curl sudo locales ccache
7
8
# https://stackoverflow.com/a/28406007/946850
0 commit comments