Skip to content

Commit

Permalink
fix path for uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
cortisiko committed Jul 23, 2024
1 parent 6814ebd commit e5cc982
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/sample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: user_interface-macOS
path: user_interface.dmg
path: dist/user_interface.dmg

- name: Upload artifacts (Linux)
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v4
with:
name: user_interface-Linux
path: dist/user_interface.app
path: dist/user_interface

- name: Upload artifacts (Windows)
if: matrix.os == 'windows-latest'
Expand All @@ -104,7 +104,7 @@ jobs:
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/
asset_path: dist/user_interface.dmg
asset_name: user_interface.dmg
asset_content_type: application/octet-stream

Expand All @@ -113,7 +113,7 @@ jobs:
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/
asset_path: dist/user_interface
asset_name: user_interface
asset_content_type: application/octet-stream

Expand Down

0 comments on commit e5cc982

Please sign in to comment.