Skip to content

Commit 59ab2b2

Browse files
authored
Update deploy-pipeline.yaml
1 parent bfb1eb6 commit 59ab2b2

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/deploy-pipeline.yaml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,21 @@ 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+
49+
publish:
50+
runs-on: ubuntu-latest
51+
steps:
52+
- name: create release
53+
uses: actions/create-release@v1
54+
env:
55+
GITHUB_TOKEN: ${{ secrets.github_token }}
56+
with:
57+
tag_name: ${{ github.run_number }}
58+
release_name: Release from ${{ github.run_number }}
59+
body: New release for ${{ github.sha }}. Release notes on the documentation site
60+
draft: false
61+
prerelease: false
62+
63+

0 commit comments

Comments
 (0)