Skip to content

Commit

Permalink
Update DB save paths for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dfsnow committed Oct 26, 2023
1 parent b5844f0 commit 634b18d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/prepare-ptaxsim/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ runs:
id: fetch_db
if: steps.cache_db.outputs.cache-hit != 'true'
run: |
aws s3 cp ${{ inputs.PTAXSIM_DB_BASE_URI }}/ptaxsim-${{ env.PTAXSIM_VERSION }}.db.bz2 ${{ github.workspace }}/ptaxsim.db.bz2 --quiet
aws s3 cp ${{ inputs.PTAXSIM_DB_BASE_URI }}/ptaxsim-${{ env.PTAXSIM_VERSION }}.db.bz2 ptaxsim.db.bz2 --quiet
shell: bash

- name: Unpack database (Linux)
Expand All @@ -65,5 +65,5 @@ runs:
- name: Unpack database (Windows)
if: runner.os == 'Windows'
run: |
7z x ${{ github.workspace }}/ptaxsim.db.bz2
7z x ${{ github.workspace }}\ptaxsim.db.bz2
shell: cmd

0 comments on commit 634b18d

Please sign in to comment.