diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4fca5c3..5820c1a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -68,19 +68,26 @@ jobs: Version: ${{ toJSON(steps.project-version.outputs.version) }} Release_Tag: "v${{ steps.project-version.outputs.version }}" + - name: Zip Release + uses: vimtor/action-zip@v1.2 + with: + files: ./signed-artifacts + recursive: true + dest: dlssupdater.zip + - name: Release uses: softprops/action-gh-release@v2 with: # with permissions to create releases in the other repo - token: ${{ secrets.CUSTOM_GITHUB_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} name: v${{ steps.project-version.outputs.version }} tag_name: v${{ steps.project-version.outputs.version }} draft: false prerelease: false fail_on_unmatched_files: true files: | - version.json - signed-artifacts/* + ./DlssUpdater/version.json + ./dlssupdater.zip - uses: sarisia/actions-status-discord@v1 if: success() @@ -91,4 +98,4 @@ jobs: description: | Version `${{ steps.project-version.outputs.version }}` Download directly inside `Dlss Updater` or [here](${{ steps.create_release.outputs.html_url }}). - color: 0xff91a4 \ No newline at end of file + color: 0xff91a4