Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Romanavr committed Jul 23, 2024
1 parent 17d9627 commit f044fad
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,20 @@ on:
- main_tmp

jobs:
update-variable:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Get Release Tag
id: get_release_tag
run: echo "Release Tag: ${{ github.event.head_commit.message }}"
- name: Create Release
id: create_release
uses: actions/create-release@v1
with:
tag_name: ${{ github.event.head_commit.message }}
release_name: ${{ github.event.head_commit.message }}
body: |
This is an automated release.
draft: false
prerelease: false

0 comments on commit f044fad

Please sign in to comment.