Skip to content

Commit

Permalink
Fix actions not uploading release builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Syer10 committed Feb 13, 2023
1 parent 229fcff commit d63143d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ jobs:
name: runner-package-${{ matrix.runtime }}
path: |
desktop/build/compose/binaries/main/*/
desktop/build/compose/binaries/main-release/*/
desktop/build/compose/jars/
!desktop/build/compose/binaries/main/app/
${{ env.SIGNED_RELEASE_FILE }}
Expand Down Expand Up @@ -150,6 +151,6 @@ jobs:

- uses: ncipollo/release-action@v1
with:
artifacts: "*/binaries/main/*/*.*,*/jars/*.jar,*/android/build/outputs/apk/release/*.apk"
artifacts: "*/binaries/main/*/*.*,*/binaries/main-release/*/*.*,*/jars/*.jar,*/android/build/outputs/apk/release/*.apk"
draft: true
token: ${{ secrets.WINGET_PUBLISH_PAT }}
3 changes: 2 additions & 1 deletion .github/workflows/Preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ jobs:
name: runner-package-${{ matrix.runtime }}
path: |
desktop/build/compose/binaries/main/*/
desktop/build/compose/binaries/main-release/*/
desktop/build/compose/jars/
!desktop/build/compose/binaries/main/app/
${{ env.SIGNED_RELEASE_FILE }}
Expand Down Expand Up @@ -186,7 +187,7 @@ jobs:
- uses: ncipollo/release-action@v1
with:
artifacts: "*/binaries/main/*/*.*,*/jars/*.jar,*/android/build/outputs/apk/release/*.apk"
artifacts: "*/binaries/main/*/*.*,*/binaries/main-release/*/*.*,*/jars/*.jar,*/android/build/outputs/apk/release/*.apk"
token: ${{ secrets.DEPLOY_PREVIEW_TOKEN }}
repo: Tachidesk-JUI-preview
tag: r${{ env.COMMIT_COUNT }}
Expand Down

0 comments on commit d63143d

Please sign in to comment.