Skip to content

Commit

Permalink
major: initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Fields committed Feb 13, 2020
1 parent d4e983a commit eb66095
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,12 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Release
id: release
id: semantic
uses: cycjimmy/semantic-release-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Tag
run: git tag -f zzz && git push origin zzz
run: git tag -f v${MAJOR_VERSION} && git push origin v${MAJOR_VERSION}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MAJOR_VERSION: ${{ steps.semantic.outputs.new_release_major_version }}

0 comments on commit eb66095

Please sign in to comment.