Skip to content

Commit

Permalink
feat(github-actions): adjust step placement
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonbynum committed May 1, 2022
1 parent 4fbc539 commit e1a77bc
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Release
if: github.event_name == 'push'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
semantic_version: 18
run: yarn semantic-release
# - name: 🚀 Release
# uses: cycjimmy/semantic-release-action@v2
# id: semantic
Expand All @@ -22,11 +29,5 @@ jobs:
# @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 }}
with:
semantic_version: 18
run: yarn semantic-release


0 comments on commit e1a77bc

Please sign in to comment.