Skip to content

Commit

Permalink
Fix linux artifact copying
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyeOfBreeze authored Jul 29, 2024
1 parent ee73fdd commit 1890547
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/deploy-linux-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ jobs:
- run: yarn install
- run: yarn workspace nt-app electron:build --publish never
- run: ls ${{ github.workspace }}/nt-app/dist_electron/
- run: |
- working-directory: "${{ github.workspace }}/nt-app/dist_electron/"
run: |
mkdir ${{ github.workspace }}/build
cp "${{ github.workspace }}/nt-app/dist_electron/latest-linux.yml" ${{ github.workspace }}/build/latest.yml
cp "${{ github.workspace }}/nt-app/dist_electron/Noita-Together-Setup-*.AppImage" ${{ github.workspace }}/build/
cp "${{ github.workspace }}/nt-app/dist_electron/Noita-Together-Setup-*.snap" ${{ github.workspace }}/build/
cp ./latest-linux.yml ${{ github.workspace }}/build/latest.yml
cp ./*.AppImage ${{ github.workspace }}/build/
cp ./*.snap ${{ github.workspace }}/build/
- name: Upload files to release
uses: svenstaro/upload-release-action@v2
with:
Expand Down

0 comments on commit 1890547

Please sign in to comment.