We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d462f98 commit b37af51Copy full SHA for b37af51
.github/workflows/build.yml
@@ -40,18 +40,19 @@ jobs:
40
name: Release
41
needs: build
42
runs-on: ubuntu-latest
43
- permissions:
44
- contents: write
45
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
46
steps:
47
- uses: actions/checkout@v4
48
- uses: actions/download-artifact@v4
49
with:
+ path: "artifacts"
50
pattern: "*-sync_dis_boi"
51
merge-multiple: true
+ - name: Display structure of downloaded files
52
+ run: ls -R
53
- uses: ncipollo/release-action@v1
54
- artifacts: "*-sync_dis_boi"
55
+ artifacts: "artifacts/*"
56
flake:
57
name: Flake self-check
58
0 commit comments