Skip to content

Commit 726eb90

Browse files
committed
added publish job
1 parent 5ea81ee commit 726eb90

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/action.yaml

+15-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,18 @@ jobs:
4343
uses: actions/upload-artifact@v2
4444
with:
4545
name: zipped-bundle
46-
path: ${{ github.sha }}.zip
46+
path: ${{ github.sha }}.zip
47+
48+
publish:
49+
runs-on: ubuntu-latest
50+
steps:
51+
- name: create release
52+
uses: actions/create-release@v1
53+
env:
54+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55+
with:
56+
tag_name: ${{ github.run_number }}
57+
release_name: Release from ${{ github.run_number }}
58+
body: New release for ${{ github.sha }}. Release notes on the documentation site
59+
draft: false
60+
prerelease: false

0 commit comments

Comments
 (0)