From d81bd8780b6a810ee2a81769372668141299f747 Mon Sep 17 00:00:00 2001 From: FabioPinheiro Date: Mon, 18 Sep 2023 10:40:08 +0100 Subject: [PATCH] Fix relase file name conflict --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b5ce5081..8e1d36ae 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,8 +1,8 @@ -name: 'Anoncreds' +name: "Anoncreds" env: - RUST_VERSION: '1.65.0' - CROSS_VERSION: '0.2.4' + RUST_VERSION: "1.65.0" + CROSS_VERSION: "0.2.4" on: release: @@ -10,7 +10,7 @@ on: workflow_dispatch: inputs: publish-binaries: - description: 'Publish Binaries to Release (will create a release if no release exits for branch or tag)' + description: "Publish Binaries to Release (will create a release if no release exits for branch or tag)" required: true default: false type: boolean @@ -104,7 +104,7 @@ jobs: command: c cwd: release-artifacts files: . - outPath: 'library-${{ matrix.architecture }}.tar.gz' + outPath: "library-${{ matrix.architecture }}.tar.gz" - name: Add library artifacts to release if: | @@ -113,4 +113,4 @@ jobs: uses: svenstaro/upload-release-action@v2 with: file: library-${{ matrix.architecture }}.tar.gz - asset_name: 'library-${{ matrix.architecture }}.tar.gz' + asset_name: "library-${{ matrix.architecture }}-${{ github.sha }}.tar.gz"