Create GitHub release after deploy (#973)

Fixes #972
This commit is contained in:
Bruno Oliveira
2023-11-21 11:26:23 -03:00
committed by GitHub
parent d81f57508d
commit f36ea25cb5

View File

@@ -47,3 +47,9 @@ jobs:
git config user.email "pytestbot@gmail.com" git config user.email "pytestbot@gmail.com"
git tag --annotate --message=v${{ github.event.inputs.version }} v${{ github.event.inputs.version }} ${{ github.sha }} git tag --annotate --message=v${{ github.event.inputs.version }} v${{ github.event.inputs.version }} ${{ github.sha }}
git push origin v${{ github.event.inputs.version }} git push origin v${{ github.event.inputs.version }}
- name: GitHub Release
uses: softprops/action-gh-release@v1
with:
files: dist/*
tag_name: v${{ github.event.inputs.version }}