Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ jobs:
${{ steps.generate-tags.outputs.date }}
${{ steps.generate-tags.outputs.sha_short }}
oci: true
extra-args: |
--rewrite-timestamp
--source-date-epoch=1321009871

- name: Login to GitHub Container Registry
uses: docker/login-action@v4
Expand Down
5 changes: 4 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ just := just_executable()
build:
git submodule update --init --recursive
git submodule update --remote
podman build -t localhost/aurora-common:latest -f ./Containerfile .
podman build \
--rewrite-timestamp \
--source-date-epoch=$(git log -1 --pretty=%ct) \
-t localhost/aurora-common:latest -f ./Containerfile .

# Check the syntax of all Justfiles in the repository
check:
Expand Down
Loading