Skip to content

Commit

Permalink
fix: broken toolbox download (unrelated to this PR)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-codes committed May 28, 2024
1 parent 49c3b61 commit 0fa413d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,10 @@ jobs:
- name: Download Playnite Toolbox
run: |-
mkdir -p .tools/Playnite
curl "${{ secrets.PLAYNITE_TOOLBOX_URL }}" -o Playnite.zip
curl "$PLAYNITE_TOOLBOX_URL" -o Playnite.zip
unzip ./Playnite.zip -d .tools/Playnite
env:
PLAYNITE_TOOLBOX_URL: ${{ secrets.PLAYNITE_TOOLBOX_URL }}
- name: Install jq
run: curl -L -o jq.exe https://github.com/stedolan/jq/releases/latest/download/jq-win64.exe
- name: Read Node version
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,10 @@ jobs:
- name: Download Playnite Toolbox
run: |-
mkdir -p .tools/Playnite
curl "${{ secrets.PLAYNITE_TOOLBOX_URL }}" -o Playnite.zip
curl "$PLAYNITE_TOOLBOX_URL" -o Playnite.zip
unzip ./Playnite.zip -d .tools/Playnite
env:
PLAYNITE_TOOLBOX_URL: ${{ secrets.PLAYNITE_TOOLBOX_URL }}
- name: Install jq
run: curl -L -o jq.exe https://github.com/stedolan/jq/releases/latest/download/jq-win64.exe
- name: Read Node version
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pull-request-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,10 @@ jobs:
- name: Download Playnite Toolbox
run: |-
mkdir -p .tools/Playnite
curl "${{ secrets.PLAYNITE_TOOLBOX_URL }}" -o Playnite.zip
curl "$PLAYNITE_TOOLBOX_URL" -o Playnite.zip
unzip ./Playnite.zip -d .tools/Playnite
env:
PLAYNITE_TOOLBOX_URL: ${{ secrets.PLAYNITE_TOOLBOX_URL }}
- name: Install jq
run: curl -L -o jq.exe https://github.com/stedolan/jq/releases/latest/download/jq-win64.exe
- name: Read Node version
Expand Down

0 comments on commit 0fa413d

Please sign in to comment.