Skip to content

Commit

Permalink
Fix release action
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailyumanov committed Apr 24, 2022
1 parent 190f2ed commit fd52e9b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 29 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,21 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true

release:
name: Create Release
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

29 changes: 0 additions & 29 deletions .github/workflows/release.yml

This file was deleted.

0 comments on commit fd52e9b

Please sign in to comment.