Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ jobs:
run: echo "checksum=$(sha256sum '${{ steps.rom-filename.outputs.filename }}' | awk '{ print $1 }')" >> $GITHUB_OUTPUT

- name: Download base patch from previous workflow
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ steps.rom-checksum.outputs.checksum }}.bps

Expand Down Expand Up @@ -487,7 +487,7 @@ jobs:
run: pip install tox

- name: Download base patches
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Move all patch files into the same directory so pyinstaller can find them
run: |
Expand Down Expand Up @@ -560,7 +560,7 @@ jobs:
run: echo "hash=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Download built executable from previous job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ph-randomizer_${{ steps.commit-hash.outputs.hash }}_${{ matrix.os }}

Expand Down Expand Up @@ -601,7 +601,7 @@ jobs:
run: echo "version=$(git describe --tags)" >> $GITHUB_OUTPUT

- name: Download built executables
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Replace commit hash with version string
run: |
Expand Down