Skip to content

Commit

Permalink
fix: secrets referencing
Browse files Browse the repository at this point in the history
Signed-off-by: Yukai Huang <yukaihuangtw@gmail.com>
  • Loading branch information
Yukaii committed Oct 30, 2024
1 parent a74964f commit 455861e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/build-steps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ runs:
-
name: Prepare Platform Environment
run: |
echo "PLATFORM_PAIR=${{ inputs.platform//\//- }}" >> $GITHUB_ENV
platform=${{ inputs.platform }}
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
-
name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
registry_image: ${{ env.REGISTRY_IMAGE }}
runtime: ${{ github.event.inputs.runtime }}
buildpack: ${{ github.event.inputs.buildpack }}
secrets: inherit

build-arm64:
runs-on: macos-latest
Expand All @@ -49,6 +50,7 @@ jobs:
registry_image: ${{ env.REGISTRY_IMAGE }}
runtime: ${{ github.event.inputs.runtime }}
buildpack: ${{ github.event.inputs.buildpack }}
secrets: inherit

merge:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 455861e

Please sign in to comment.