Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sheurich committed Feb 7, 2024
1 parent eb5122f commit f2d4b56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
- name: Determine SOURCE_DATE_EPOCH
id: source_date_epoch
run: |
echo "{source_date_epoch}={$(git show -s --format=%ct $GITHUB_SHA)}" >> $GITHUB_OUTPUT
echo "SOURCE_DATE_EPOCH=$(git show -s --format=%ct $GITHUB_SHA)" >> $GITHUB_OUTPUT
- name: Build and Push container images
uses: docker/build-push-action@v5
id: build-and-push
with:
build-args: |
SOURCE_DATE_EPOCH=${{ steps.source_date_epoch.outputs.source_date_epoch }}
SOURCE_DATE_EPOCH=${{ steps.source_date_epoch.outputs.SOURCE_DATE_EPOCH }}
cache-from: type=gha
cache-to: type=gha,mode=max
context: .
Expand Down

0 comments on commit f2d4b56

Please sign in to comment.