We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a74964f commit 455861eCopy full SHA for 455861e
.github/actions/build-steps/action.yml
@@ -23,7 +23,8 @@ runs:
23
-
24
name: Prepare Platform Environment
25
run: |
26
- echo "PLATFORM_PAIR=${{ inputs.platform//\//- }}" >> $GITHUB_ENV
+ platform=${{ inputs.platform }}
27
+ echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
28
29
name: Checkout
30
uses: actions/checkout@v4
.github/workflows/push-image.yml
@@ -33,6 +33,7 @@ jobs:
33
registry_image: ${{ env.REGISTRY_IMAGE }}
34
runtime: ${{ github.event.inputs.runtime }}
35
buildpack: ${{ github.event.inputs.buildpack }}
36
+ secrets: inherit
37
38
build-arm64:
39
runs-on: macos-latest
@@ -49,6 +50,7 @@ jobs:
49
50
51
52
53
54
55
merge:
56
runs-on: ubuntu-latest
0 commit comments