Skip to content

Commit

Permalink
ci: temporarily lock in the semantic-release version
Browse files Browse the repository at this point in the history
  • Loading branch information
cecilia-sanare committed Jan 14, 2024
1 parent 339e5cf commit 81d7724
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Build
run: bun run build

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: build
path: dist
Expand All @@ -85,20 +85,21 @@ jobs:
needs: [lint, test, build]
steps:
- uses: actions/checkout@v4
- run: git --version
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install Packages
run: bun install --frozen-lockfile

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build
path: dist

- name: Deploy
run: bunx --bun semantic-release
run: bunx --bun semantic-release@^22
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 81d7724

Please sign in to comment.