From 14e926a9a252e89d85edef26c047e6829722bc20 Mon Sep 17 00:00:00 2001 From: Gokhun Celik Date: Tue, 16 Jul 2024 23:01:58 +0200 Subject: [PATCH] Update runner configuration --- .github/workflows/release.yaml | 4 ++-- jreleaser.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 795d036..a6dcb71 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -45,7 +45,7 @@ jobs: with: version: latest files: | - ./build/native/nativeCompile/convert${{ matrix.suffix }} + ./build/native/nativeCompile/convert args: --best - name: 'Add convert to PATH' @@ -60,7 +60,7 @@ jobs: - name: 'Upload build artifact' uses: actions/upload-artifact@v4 with: - name: artifacts + name: artifacts-'${{ matrix.os }}' path: build/**/*.zip release: diff --git a/jreleaser.yml b/jreleaser.yml index d33c421..8a7a614 100644 --- a/jreleaser.yml +++ b/jreleaser.yml @@ -16,11 +16,11 @@ release: distributions: convert: artifacts: - - path: "artifacts/dist/{{distributionName}}-{{projectVersion}}-darwin-x86_64.zip" + - path: "artifacts-macos-13/dist/{{distributionName}}-{{projectVersion}}-darwin-x86_64.zip" platform: "osx-x86_64" - - path: "artifacts/dist/{{distributionName}}-{{projectVersion}}-darwin-aarch64.zip" + - path: "artifacts-macos-latest/dist/{{distributionName}}-{{projectVersion}}-darwin-aarch64.zip" platform: "osx-aarch_64" - - path: "artifacts/dist/{{distributionName}}-{{projectVersion}}-linux-x86_64.zip" + - path: "artifacts-ubuntu-latest/dist/{{distributionName}}-{{projectVersion}}-linux-x86_64.zip" platform: "linux-x86_64" brew: active: RELEASE