Skip to content

Commit

Permalink
update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
queenkjuul committed Nov 5, 2024
1 parent 045392f commit 9eb1969
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
key: ${{ secrets.KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
source: "server/dist/spotify97-server-linux-arm64-${{env.PACKAGE_VERSION}}-release.tar.gz,server/dist/spotify97-server-linux-x64-${{env.PACKAGE_VERSION}}-release.tar.gz,server/dist/spotify97-server-macos-x64-${{ env.PACKAGE_VERSION }}-release.tar.gz"
target: /srv/www/public/spotifyclient97/server/${{ env.PACKAGE_VERSION }}/${{ env.SHA }}/
target: /srv/www/public/spotifyclient97/server/${{ env.PACKAGE_VERSION }}/release/
strip_components: 2
publish:
runs-on: ubuntu-latest
Expand All @@ -104,13 +104,20 @@ jobs:
- uses: jozsefsallai/[email protected]
with:
path: server/package.json
- name: download
- name: download linux-arm64
uses: actions/download-artifact@v4
with:
name: |
"spotify97-server-linux-x64-${{ env.PACKAGE_VERSION }}-release"
"spotify97-server-linux-arm64-${{ env.PACKAGE_VERSION }}-release"
"spotify97-server-macos-x64-${{ env.PACKAGE_VERSION }}-release"
name: spotify97-server-linux-arm64-${{ env.PACKAGE_VERSION }}-release
path: .
- name: download linux-x64
uses: actions/download-artifact@v4
with:
name: spotify97-server-linux-x64-${{ env.PACKAGE_VERSION }}-release
path: .
- name: download macos-x64
uses: actions/download-artifact@v4
with:
name: spotify97-server-macos-x64-${{ env.PACKAGE_VERSION }}-release
path: .
- run: ls -la
- name: upload
Expand Down

0 comments on commit 9eb1969

Please sign in to comment.