Skip to content

Commit

Permalink
fix(angular): same syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
thepercival committed Apr 15, 2022
1 parent 352abe0 commit 05a6932
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions .github/workflows/semver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,17 @@ on:

jobs:
build:
name: Generate tag
runs-on: ubuntu-latest
steps:

- name: Check out code
uses: actions/checkout@v2
with:
fetch-depth: '0'

- uses: actions/checkout@v2
- name: Bump version and push tag
uses: anothrNick/github-tag-action@1.39.0
env:
DEFAULT_BUMP: patch
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
id: tag_version
uses: mathieudutour/github-tag-action@v6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- 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 05a6932

Please sign in to comment.