Skip to content

Commit

Permalink
feat(github-actions): Test new release step
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonbynum committed May 1, 2022
1 parent bccadc2 commit bde16c2
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,18 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Release
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn semantic-release
- name: 🚀 Release
uses: cycjimmy/semantic-release-action@v2
id: semantic
with:
semantic_version: 18
extra_plugins: |
@semantic-release/changelog@6
@semantic-release/git@10
conventional-changelog-conventionalcommits@4.6.1
# - name: Release
# if: github.event_name == 'push' && github.ref == 'refs/heads/main'
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: yarn semantic-release

0 comments on commit bde16c2

Please sign in to comment.