Skip to content

Commit 8538636

Browse files
committed
chore: GHA automatically publishes GHA releases on new tags
1 parent ba75b06 commit 8538636

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/bundle.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- '*'
77

88
jobs:
9-
build:
9+
bundle:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
fail-fast: false
@@ -38,3 +38,15 @@ jobs:
3838
name: scim2-${{ github.ref_name }}-${{ matrix.os }}
3939
path: ./dist/scim2.exe
4040
if-no-files-found: error
41+
42+
release:
43+
needs: bundle
44+
runs-on: ubuntu-latest
45+
steps:
46+
- uses: actions/download-artifact@v4
47+
with:
48+
pattern: scim2-${{ github.ref_name }}-*
49+
path: dist
50+
- uses: softprops/action-gh-release@v2
51+
with:
52+
files: dist/*

0 commit comments

Comments
 (0)