Skip to content

Commit

Permalink
get-platform needs $GITHUB_WORKSPACE too
Browse files Browse the repository at this point in the history
  • Loading branch information
jhheider committed Nov 24, 2023
1 parent 107e42e commit 467528b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion actions/get-platform/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,14 @@ runs:

- uses: actions/checkout@v4

- run: echo "GITHUB_WORKSPACE=$GITHUB_WORKSPACE" >> $GITHUB_OUTPUT
id: workspace
shell: sh

- run: ${{github.action_path}}/get-platform.ts
shell: sh
id: platform
env:
PLATFORM: ${{ inputs.platform }}
PROJECTS: ${{ inputs.projects }}
PKGX_PANTRY_PATH: ${{ env.GITHUB_WORKSPACE }}
PKGX_PANTRY_PATH: ${{ steps.workspace.outputs.GITHUB_WORKSPACE }}

0 comments on commit 467528b

Please sign in to comment.