We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfb1eb6 commit 59ab2b2Copy full SHA for 59ab2b2
.github/workflows/deploy-pipeline.yaml
@@ -43,4 +43,21 @@ jobs:
43
uses: actions/upload-artifact@v2
44
with:
45
name: zipped-bundle
46
- path: ${{ github.sha }}.zip
+ 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