Skip to content

Commit

Permalink
Merge pull request #159 from jovandeginste/fix-docker-build-time
Browse files Browse the repository at this point in the history
Fix the build time in Docker
  • Loading branch information
jovandeginste committed May 26, 2024
2 parents 7d9a2b4 + f564b94 commit 0fe05a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set BUILD_TIME env
run: echo BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") >> ${GITHUB_ENV}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set BUILD_TIME env
run: echo BUILD_TIME=$(date -u --rfc-3339=seconds) >> ${GITHUB_ENV}
run: echo BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") >> ${GITHUB_ENV}

- name: Install dependencies
run: make install-deps
Expand Down

0 comments on commit 0fe05a8

Please sign in to comment.