Skip to content

Commit

Permalink
revert: ⏪ change tag-version back
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydrichards committed Feb 11, 2024
1 parent c699af5 commit 78932f4
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/tag-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,16 @@ jobs:
!contains(github.event.head_commit.message, '[content]')
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN }}
- uses: oven-sh/setup-bun@v1
- uses: actions/setup-node@v4

- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x

# node dependency cache
# this is not required but speeds up the process
- uses: actions/cache@v4
Expand All @@ -37,9 +40,10 @@ jobs:
node
- name: Install deps
run: bun install --frozen-lockfile
uses: oven-sh/setup-bun@v1
- run: bun install --frozen-lockfile

- name: Tag Version
run: bunx semantic-release
run: npx semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}

0 comments on commit 78932f4

Please sign in to comment.