Skip to content

Commit

Permalink
fix bug in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jon gadsden committed Apr 10, 2024
1 parent 2bd4f78 commit 445bb18
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ on:
jobs:
create_release:
name: Release pull-request

runs-on: ubuntu-22.04
env:
GH_TAG: ${{ env.GITHUB_REF_NAME }}

steps:
- name: Checkout markdown
uses: actions/[email protected]
Expand Down Expand Up @@ -84,16 +88,16 @@ jobs:
uses: peter-evans/[email protected]
with:
title: |
Release of Developer Guide version ${{GITHUB_REF_NAME}}
Release of Developer Guide version ${{ env.GH_TAG }}
body: |
**Summary** :
Pull request automatically generated for the latest release version
**Description for the changelog** :
release of version ${{GITHUB_REF_NAME}}
release of version ${{ env.GH_TAG }}
**Other info** :
Please verify and then merge the pull request to update the release
commit-message: update for release version ${{GITHUB_REF_NAME}}
commit-message: update for release version ${{ env.GH_TAG }}
branch: update-release
base: main

0 comments on commit 445bb18

Please sign in to comment.