Skip to content

Commit

Permalink
fix path issues
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyeOfBreeze authored Jul 21, 2024
1 parent c5ac8e3 commit 66b92b3
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/deploy-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,17 @@ jobs:
working-directory: ./nt-app
- run: yarn install
- run: yarn workspace nt-app electron:build --publish never
- run: ls ./nt-app/dist_electron/
- run: ls ${{ github.workspace }}/nt-app/dist_electron/
- run: |
cp "./nt-app/dist_electron/latest.yml" ./build/latest.yml
cp "./nt-app/dist_electron/Noita Together Setup ${{ steps.get_tag_version.outputs.version }}.exe" ./build/Noita-Together-Setup-${{ steps.get_tag_version.outputs.version }}.exe
cp "./nt-app/dist_electron/Noita Together Setup ${{ steps.get_tag_version.outputs.version }}.exe.blockmap" ./build/Noita-Together-Setup-${{ steps.get_tag_version.outputs.version }}.exe.blockmap
mkdir ${{ github.workspace }}/build
cp "${{ github.workspace }}/nt-app/dist_electron/latest.yml" ${{ github.workspace }}/build/latest.yml
cp "${{ github.workspace }}/nt-app/dist_electron/Noita Together Setup ${{ steps.get_tag_version.outputs.version }}.exe" ${{ github.workspace }}/build/Noita-Together-Setup-${{ steps.get_tag_version.outputs.version }}.exe
cp "${{ github.workspace }}/nt-app/dist_electron/Noita Together Setup ${{ steps.get_tag_version.outputs.version }}.exe.blockmap" ${{ github.workspace }}/build/Noita-Together-Setup-${{ steps.get_tag_version.outputs.version }}.exe.blockmap
- name: Upload files to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./build/
file: ${{ github.workspace }}/build/
tag: ${{ github.ref }}
overwrite: true
file_glob: true

0 comments on commit 66b92b3

Please sign in to comment.