From f36ea25cb53cb960037f4a8510816b81fa313035 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Tue, 21 Nov 2023 11:26:23 -0300 Subject: [PATCH] Create GitHub release after deploy (#973) Fixes #972 --- .github/workflows/deploy.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 86d55d5..a1296a5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -47,3 +47,9 @@ jobs: git config user.email "pytestbot@gmail.com" git tag --annotate --message=v${{ github.event.inputs.version }} v${{ github.event.inputs.version }} ${{ github.sha }} 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 }}