Skip to content

Commit

Permalink
GHA: Debug release creation
Browse files Browse the repository at this point in the history
  • Loading branch information
BoykoAlex committed Oct 30, 2023
1 parent 9db4ad0 commit 1bdffcf
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/create-gh-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,22 @@ jobs:
steps:
- name: Verify Changelog
run: |
echo '${{needs.changelog.outputs.content }}'
- name: Checkout code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: Push Tag
run: |
git config --global user.name "@spring-projects/spring-ide-admin"
git tag -a ${{ inputs.version }}.RELEASE -m "${{ inputs.version }}.RELEASE"
git push --tags
- name: Create Release
uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
id: ${{ inputs.version }}.RELEASE
tag_name: ${{ inputs.version }}.RELEASE
release_name: Release ${{ inputs.version }}.RELEASE
body: ${{needs.changelog.outputs.content }}
draft: true
prerelease: false
echo '${{ needs.changelog.outputs.content }}'
# - name: Checkout code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
# - name: Push Tag
# run: |
# git config --global user.name "@spring-projects/spring-ide-admin"
# git tag -a ${{ inputs.version }}.RELEASE -m "${{ inputs.version }}.RELEASE"
# git push --tags
# - name: Create Release
# uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# id: ${{ inputs.version }}.RELEASE
# tag_name: ${{ inputs.version }}.RELEASE
# release_name: Release ${{ inputs.version }}.RELEASE
# body: ${{ needs.changelog.outputs.content }}
# draft: true
# prerelease: false

0 comments on commit 1bdffcf

Please sign in to comment.