Skip to content

Commit

Permalink
no autofix ?
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Jul 13, 2024
1 parent df38336 commit 6b939d0
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/pack-randomizer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,13 @@ jobs:
shell: pwsh
- name: Get pack filename
id: packname
run: echo "::set-output name=packname::$( find -name 'Entrance Randomizer v*.zip' | sed 's/\.zip$//1'
| sed 's/\.\/$//1' )"
run: echo "::set-output name=packname::$(
find -name 'Entrance Randomizer v*.zip' | sed 's/\.zip$//1' | sed 's/\.\/$//1'
)"
- name: Extract premade archive
run: 7z x \ '${{ steps.packname.outputs.packname }}.zip' \ -o'${{ steps.packname.outputs.packname
}}'
run: 7z x \
'${{ steps.packname.outputs.packname }}.zip' \
-o'${{ steps.packname.outputs.packname }}'
- uses: actions/upload-artifact@v4
with:
name: ${{ steps.packname.outputs.packname }}
Expand Down

0 comments on commit 6b939d0

Please sign in to comment.