From 461ce2152fcae021b3af0bac73ed20c171ce93e4 Mon Sep 17 00:00:00 2001 From: Arne Schmid Date: Tue, 10 Jun 2025 15:59:07 +0200 Subject: [PATCH 1/3] add tar.gz packaging to codegen.yml --- .github/workflows/codegen.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codegen.yml b/.github/workflows/codegen.yml index bf09e63..bf19534 100644 --- a/.github/workflows/codegen.yml +++ b/.github/workflows/codegen.yml @@ -96,16 +96,21 @@ jobs: name: codegen-rpc-interfaces path: generated - - name: Zip generated files + - name: ZIP generated files run: zip -r csolution-rpc.zip * working-directory: generated + - name: TAR generated files + run: tar -czf csolution-rpc.tar.gz * + working-directory: generated + - name: Attach files to release assets id: release_assets uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: generated/csolution-rpc.zip + file: | + generated/csolution-rpc.zip + generated/csolution-rpc.tar.gz tag: ${{ github.ref }} overwrite: true - asset_name: csolution-rpc.zip From 293debaa1ff54b3115a5faca9a5349446199cedc Mon Sep 17 00:00:00 2001 From: Arne Schmid Date: Tue, 10 Jun 2025 16:04:30 +0200 Subject: [PATCH 2/3] add workflow dispatch --- .github/workflows/codegen.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/codegen.yml b/.github/workflows/codegen.yml index bf19534..11ac1ff 100644 --- a/.github/workflows/codegen.yml +++ b/.github/workflows/codegen.yml @@ -16,6 +16,7 @@ on: - '!**/*.md' release: types: [published] + workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.ref }} From da1f9cb69f7288ede0791fc445de04fbe6fa83f1 Mon Sep 17 00:00:00 2001 From: Arne Schmid Date: Tue, 10 Jun 2025 16:07:56 +0200 Subject: [PATCH 3/3] remove code dispatcher --- .github/workflows/codegen.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/codegen.yml b/.github/workflows/codegen.yml index 11ac1ff..bf19534 100644 --- a/.github/workflows/codegen.yml +++ b/.github/workflows/codegen.yml @@ -16,7 +16,6 @@ on: - '!**/*.md' release: types: [published] - workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.ref }}