Skip to content

Commit 881996b

Browse files
fix extracted artifacts being overwritten
1 parent 115bc35 commit 881996b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release-go.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
workflow_conclusion: success
9393
branch: ${{ inputs.release_type == 'Dry Run' && 'main' || github.ref_name }}
9494
artifacts: libbitwarden_c_files-x86_64-apple-darwin
95-
skip_unpack: false
95+
skip_unpack: true
9696

9797
- name: Download aarch64-apple-darwin artifact
9898
uses: bitwarden/gh-actions/download-artifacts@main
@@ -101,7 +101,7 @@ jobs:
101101
workflow_conclusion: success
102102
branch: ${{ inputs.release_type == 'Dry Run' && 'main' || github.ref_name }}
103103
artifacts: libbitwarden_c_files-aarch64-apple-darwin
104-
skip_unpack: false
104+
skip_unpack: true
105105

106106
- name: Download x86_64-unknown-linux-musl artifact
107107
uses: bitwarden/gh-actions/download-artifacts@main
@@ -110,7 +110,7 @@ jobs:
110110
workflow_conclusion: success
111111
branch: ${{ inputs.release_type == 'Dry Run' && 'main' || github.ref_name }}
112112
artifacts: libbitwarden_c_files-x86_64-unknown-linux-musl
113-
skip_unpack: false
113+
skip_unpack: true
114114

115115
- name: Download aarch64-unknown-linux-musl artifact
116116
uses: bitwarden/gh-actions/download-artifacts@main
@@ -119,7 +119,7 @@ jobs:
119119
workflow_conclusion: success
120120
branch: ${{ inputs.release_type == 'Dry Run' && 'main' || github.ref_name }}
121121
artifacts: libbitwarden_c_files-aarch64-unknown-linux-musl
122-
skip_unpack: false
122+
skip_unpack: true
123123

124124
- name: Download x86_64-pc-windows-gnu artifact
125125
uses: bitwarden/gh-actions/download-artifacts@main
@@ -128,7 +128,7 @@ jobs:
128128
workflow_conclusion: success
129129
branch: ${{ inputs.release_type == 'Dry Run' && 'main' || github.ref_name }}
130130
artifacts: libbitwarden_c_files-x86_64-pc-windows-gnu
131-
skip_unpack: false
131+
skip_unpack: true
132132

133133
- name: Update files
134134
run: |
@@ -139,7 +139,7 @@ jobs:
139139
mkdir -p sm-sdk-go/internal/cinterface/lib/{darwin-{x64,arm64},linux-{x64,arm64},windows-x64}
140140
141141
- name: Test
142-
run: ls -halR . && exit 1
142+
run: ls -halR sm-sdk-go/ && exit 1
143143

144144
- name: Download artifacts
145145
uses: bitwarden/gh-actions/download-artifacts@main

0 commit comments

Comments
 (0)