Skip to content

Commit b37af51

Browse files
committed
ci: fix?
1 parent d462f98 commit b37af51

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,19 @@ jobs:
4040
name: Release
4141
needs: build
4242
runs-on: ubuntu-latest
43-
permissions:
44-
contents: write
4543
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
4644
steps:
4745
- uses: actions/checkout@v4
4846
- uses: actions/download-artifact@v4
4947
with:
48+
path: "artifacts"
5049
pattern: "*-sync_dis_boi"
5150
merge-multiple: true
51+
- name: Display structure of downloaded files
52+
run: ls -R
5253
- uses: ncipollo/release-action@v1
5354
with:
54-
artifacts: "*-sync_dis_boi"
55+
artifacts: "artifacts/*"
5556
flake:
5657
name: Flake self-check
5758
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)