Skip to content

Commit d2b313d

Browse files
Fix relase file name conflict (#4)
1 parent 3e456e2 commit d2b313d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
name: 'Anoncreds'
1+
name: "Anoncreds"
22

33
env:
4-
RUST_VERSION: '1.65.0'
5-
CROSS_VERSION: '0.2.4'
4+
RUST_VERSION: "1.65.0"
5+
CROSS_VERSION: "0.2.4"
66

77
on:
88
release:
99
types: [created]
1010
workflow_dispatch:
1111
inputs:
1212
publish-binaries:
13-
description: 'Publish Binaries to Release (will create a release if no release exits for branch or tag)'
13+
description: "Publish Binaries to Release (will create a release if no release exits for branch or tag)"
1414
required: true
1515
default: false
1616
type: boolean
@@ -104,7 +104,7 @@ jobs:
104104
command: c
105105
cwd: release-artifacts
106106
files: .
107-
outPath: 'library-${{ matrix.architecture }}.tar.gz'
107+
outPath: "library-${{ matrix.architecture }}.tar.gz"
108108

109109
- name: Add library artifacts to release
110110
if: |
@@ -113,4 +113,4 @@ jobs:
113113
uses: svenstaro/upload-release-action@v2
114114
with:
115115
file: library-${{ matrix.architecture }}.tar.gz
116-
asset_name: 'library-${{ matrix.architecture }}.tar.gz'
116+
asset_name: "library-${{ matrix.architecture }}-${{ github.sha }}.tar.gz"

0 commit comments

Comments
 (0)