Skip to content

Commit

Permalink
chore(build): fix tmp name
Browse files Browse the repository at this point in the history
  • Loading branch information
defclass committed Apr 30, 2021
1 parent ddb017a commit 68e9cdd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-desktop-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ jobs:
working-directory: ./static

- name: Change Artifact Name For ZIP File
run: mv static/out/make/zip/linux/x64/Logseq-linux-x64-*.zip static/out/make/zip/linux/x64/Logseq-linux.zip
run: mv static/out/make/zip/linux/x64/*-linux-x64-*.zip static/out/make/zip/linux/x64/Logseq-linux.zip

- name: Change Artifact Name For AppImage File
run: mv static/out/make/Logseq-*.AppImage static/out/make/Logseq-linux.AppImage
run: mv static/out/make/*-*.AppImage static/out/make/Logseq-linux.AppImage

- name: Cache Artifact With ZIP format
uses: actions/upload-artifact@v1
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
working-directory: ./static

- name: Change DMG Name
run: mv static/out/make/Logseq.dmg static/out/make/logseq-darwin-x64-${{ github.event.inputs.tag-version }}.dmg
run: mv static/out/make/*.dmg static/out/make/logseq-darwin-x64-${{ github.event.inputs.tag-version }}.dmg

- name: Cache Artifact DMG
uses: actions/upload-artifact@v1
Expand Down

0 comments on commit 68e9cdd

Please sign in to comment.