Skip to content

Commit

Permalink
✏️ Fixed typos in docker workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Carr committed Apr 7, 2022
1 parent 3263d00 commit 4c894e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
context: .
push: true
build-args: |
BUILD_DATE:${{ steps.build_date_gen.outputs.build_date }}
BUILD_COMMIT:${{ github.sha }}
BUILD_VERSION:nightly
BUILD_DATE=${{ steps.build_date_gen.outputs.build_date }}
BUILD_COMMIT=${{ github.sha }}
BUILD_VERSION=nightly
labels: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:nightly
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ jobs:
context: .
push: true
build-args: |
BUILD_DATE:${{ steps.build_date_gen.outputs.build_date }}
BUILD_COMMIT:${{ github.sha }}
BUILD_VERSION:${{ github.ref_name }}
BUILD_DATE=${{ steps.build_date_gen.outputs.build_date }}
BUILD_COMMIT=${{ github.sha }}
BUILD_VERSION=${{ github.ref_name }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 4c894e5

Please sign in to comment.