Skip to content

Commit f65f702

Browse files
authored
chore: Simplify download configuration in RC CI workflow (#74)
## What's Changed We don't need to use `pattern` because we have only one artifact. Closes #73.
1 parent a563bba commit f65f702

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/rc.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,12 @@ jobs:
126126
- name: Download
127127
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
128128
with:
129-
pattern: release-*
129+
name: release-source
130130
- name: Verify
131131
env:
132132
VERIFY_DEFAULT: 0
133133
VERIFY_SOURCE: 1
134134
run: |
135-
mv release-*/* ./
136135
dev/release/verify_rc.sh "${VERSION}" "${RC}"
137136
138137
upload:
@@ -151,7 +150,7 @@ jobs:
151150
- name: Download
152151
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
153152
with:
154-
pattern: release-*
153+
name: release-source
155154
- name: Upload
156155
if: github.ref_type == 'tag'
157156
env:
@@ -163,4 +162,4 @@ jobs:
163162
--repo ${GITHUB_REPOSITORY} \
164163
--title "Apache Arrow Swift ${VERSION} RC${RC}" \
165164
--verify-tag \
166-
release-*/*.tar.gz*
165+
*.tar.gz*

0 commit comments

Comments
 (0)