We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6e1ff8 commit dc87394Copy full SHA for dc87394
1 file changed
.github/workflows/release.yml
@@ -56,6 +56,20 @@ jobs:
56
run: |
57
python3 -m pip install --upgrade build
58
python3 -m build
59
+ zip alerta-api.zip -r dist/*
60
+ tar cvfz alerta-api.tar.gz dist/*
61
+ - name: Release
62
+ id: create-release
63
+ uses: softprops/action-gh-release@v2
64
+ with:
65
+ token: ${{ secrets.GITHUB_TOKEN }}
66
+ tag_name: ${{ github.ref }}
67
+ name: Release ${{ github.ref }}
68
+ draft: false
69
+ prerelease: ${{ contains(github.ref_name, '-') }}
70
+ files: |
71
+ ./alerta-api.zip
72
+ ./alerta-api.tar.gz
73
74
- uses: act10ns/slack@v2
75
with:
0 commit comments