Skip to content

Commit

Permalink
Merge pull request #21 from cumc/fix_syntax_error
Browse files Browse the repository at this point in the history
fix syntax error
  • Loading branch information
danielnachun authored Dec 10, 2023
2 parents 021bdad + 06600d7 commit c0e0b4e
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ jobs:
permissions:
contents: write

steps:
- uses: actions/checkout@v2
steps:
- uses: actions/checkout@v2

- name: Create new tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
custom_tag: ${{ github.events.input.tag }}
commit_sha: ${{ github.events.input.commit }}
tag_prefix: ""

- name: Create a GitHub release
uses: ncipollo/release-action@v1
- name: Create new tag
id: tag_version
uses: mathieudutour/[email protected]
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
github_token: ${{ secrets.GITHUB_TOKEN }}
custom_tag: ${{ github.events.input.tag }}
commit_sha: ${{ github.events.input.commit }}
tag_prefix: ""

- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}

0 comments on commit c0e0b4e

Please sign in to comment.