Skip to content

Commit

Permalink
Fix/script not found (#3)
Browse files Browse the repository at this point in the history
* ls in action

* pwd

* Add action folder to PATH

* Move script to top level
  • Loading branch information
druzsan authored Apr 25, 2023
1 parent 6e53204 commit 2f81eea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@ outputs:
runs:
using: composite
steps:
- name: Add action folder to PATH
run: echo "${{ github.action_path }}" >> $GITHUB_PATH
shell: bash
- name: Set matrix
id: set-matrix
run: |
MATRIX="$(dist/parse-matrix.sh "${{ inputs.matrix }}" "${{ inputs.include }}" "${{ inputs.exclude }}")"
MATRIX="$(parse-matrix.sh "${{ inputs.matrix }}" "${{ inputs.include }}" "${{ inputs.exclude }}")"
echo "$MATRIX" | yq -P '{"matrix":.}'
echo "MATRIX=$MATRIX" >> $GITHUB_ENV
echo "matrix=$MATRIX" >> $GITHUB_OUTPUT
Expand Down
File renamed without changes.

0 comments on commit 2f81eea

Please sign in to comment.