Skip to content

Commit

Permalink
Fixing the release action
Browse files Browse the repository at this point in the history
  • Loading branch information
Atraxus committed Feb 19, 2024
1 parent 5003a06 commit f892b22
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/releaseDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,21 @@ jobs:
draft: false
prerelease: false

- name: List downloaded artifacts and contents
run: |
ls -lah ${{github.workspace}}/artifacts
ls -lah ${{github.workspace}}/artifacts/rayx-Linux.deb
ls -lah ${{github.workspace}}/artifacts/rayx-win64.zip
- name: Upload Artifact to Release (Windows)
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{github.workspace}}/artifacts/rayx-win64.zip
asset_name: rayx-win64.zip
asset_path: ${{github.workspace}}/artifacts/rayx-win64.zip/RAYX-0.18.0-win64.zip
asset_name: RAYX-0.18.0-win64.zip
asset_content_type: application/zip

- name: Upload Artifact to Release (Ubuntu)
Expand All @@ -121,8 +128,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{github.workspace}}/artifacts/rayx-Linux.deb
asset_name: rayx-Linux.deb
asset_path: ${{github.workspace}}/artifacts/rayx-Linux.deb/RAYX-0.18.0-Linux.deb
asset_name: RAYX-0.18.0-Linux.deb
asset_content_type: application/x-deb


0 comments on commit f892b22

Please sign in to comment.