From f0f2b255dea2aa205231f13ba19d734483e38f5d Mon Sep 17 00:00:00 2001 From: Dominik Date: Sat, 2 Nov 2024 11:49:37 +0100 Subject: [PATCH 1/3] Update main.yml --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4fca5c3..9eaad4b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -79,8 +79,8 @@ jobs: prerelease: false fail_on_unmatched_files: true files: | - version.json - signed-artifacts/* + ./DlssUpdater/version.json + ./signed-artifacts/* - uses: sarisia/actions-status-discord@v1 if: success() @@ -91,4 +91,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 From dab3026023c6ea46294497df8602862496cdf6b3 Mon Sep 17 00:00:00 2001 From: Dominik Date: Sat, 2 Nov 2024 11:52:58 +0100 Subject: [PATCH 2/3] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9eaad4b..65c61e9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -72,7 +72,7 @@ jobs: 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 From f18a03b4ced9c5e3c2cb74149bd2fea5c3ece75b Mon Sep 17 00:00:00 2001 From: Dominik Date: Sat, 2 Nov 2024 11:57:39 +0100 Subject: [PATCH 3/3] Update main.yml --- .github/workflows/main.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 65c61e9..5820c1a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -68,6 +68,13 @@ 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: @@ -80,7 +87,7 @@ jobs: fail_on_unmatched_files: true files: | ./DlssUpdater/version.json - ./signed-artifacts/* + ./dlssupdater.zip - uses: sarisia/actions-status-discord@v1 if: success()