Skip to content

Commit

Permalink
release upload fix
Browse files Browse the repository at this point in the history
  • Loading branch information
null511 committed Oct 16, 2024
1 parent 0919e7e commit cd9adce
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ jobs:
prepare_release:
name: Prepare Release
runs-on: ubuntu-latest
permissions:
contents: write
outputs:
release_id: ${{ steps.create_release.outputs.id }}
upload_url: ${{ steps.create_release.outputs.upload_url }}
release_id: ${{ steps.prepare_release.outputs.id }}
upload_url: ${{ steps.prepare_release.outputs.upload_url }}
steps:
- name: Prepare Release
uses: softprops/action-gh-release@v2
Expand All @@ -31,6 +33,8 @@ jobs:
name: Publish CLI
runs-on: ubuntu-latest
needs: [prepare_release]
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -73,6 +77,8 @@ jobs:
name: Publish UI
runs-on: windows-latest
needs: [prepare_release]
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Inno/setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ InfoBeforeFile=D:\PixelGraph\PixelGraph.UI\Resources\EULA.rtf
PrivilegesRequired=lowest
PrivilegesRequiredOverridesAllowed=dialog
OutputDir=D:\PixelGraph\publish
OutputBaseFilename=PixelGraph-{#MyAppVersion}
OutputBaseFilename=PixelGraph-UI-{#MyAppVersion} Install
Compression=lzma
SolidCompression=yes
WizardStyle=modern
Expand Down

0 comments on commit cd9adce

Please sign in to comment.