Skip to content

Commit

Permalink
Use env var properly
Browse files Browse the repository at this point in the history
  • Loading branch information
tskarhed committed May 13, 2023
1 parent c1822db commit 7f69342
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ jobs:
run: npm run build:11ty --pathPrefix=scores-ly
- name: Build artifact archive
run: |
chmod -c -R +rX "$env.INPUT_PATH" | while read line; do
chmod -c -R +rX "$INPUT_PATH" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
tar \
--dereference --hard-dereference \
--directory "env.$INPUT_PATH" \
--directory "$INPUT_PATH" \
-cvf "$RUNNER_TEMP/artifact.tar" \
--exclude=.git \
--exclude=.github \
Expand Down

0 comments on commit 7f69342

Please sign in to comment.