Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: auto release #18

Merged
merged 14 commits into from
Oct 23, 2023
3 changes: 1 addition & 2 deletions .github/workflows/release-creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ on:
branches:
- main
name: combined-release-workflow


env:
GH_TOKEN: ${{ github.token }}

Expand All @@ -29,6 +27,7 @@ jobs:

- name: Check Release Creation
id: check-release-created
if: ${{ steps.release.outputs.tag_name != '' }}
run: |
if gh release view "${{ steps.release.outputs.tag_name }}" > /dev/null; then
echo "Release was created."
Expand Down
Loading