Skip to content

Commit

Permalink
fix(ci): build
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjeannesson committed Mar 14, 2024
1 parent e3f9eb9 commit eed19f2
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,24 +61,25 @@ jobs:
- name: Get all distributables
uses: actions/download-artifact@v3

- name: Unzip distributables
- name: Get distributables
run: |
ls
cd linux-distributables
ls
mkdir distributables
cp -r linux-distributables/* distributables/
cp -r mac-distributables/* distributables/
cp -r windows-distributables/* distributables/
ls distributables
- name: Filter out .blockmap files
run: |
find desktop-app/dist -name '*.blockmap' -exec rm {} +
find distribuables -name '*.blockmap' -exec rm {} +
- name: Publish all artifacts to GitHub Releases
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ env.VERSION }}
with:
files: Napse-*
files: distributables/*
tag_name: ${{ env.VERSION }}
body: ${{ github.event.release.body }}
draft: false
Expand Down

0 comments on commit eed19f2

Please sign in to comment.