Skip to content

Commit

Permalink
Merge pull request #4 from hron/fix-release
Browse files Browse the repository at this point in the history
fix: Minor improvements to the release process
  • Loading branch information
hron authored Dec 3, 2024
2 parents d2aaea2 + 514e4a0 commit ee5fde0
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -15,9 +16,12 @@ jobs:
persist-credentials: false

- name: Setup Node.js environment
uses: actions/setup-node@v3.6.0
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
cache-dependency-path: |
yarn.lock
- name: Install dependencies
run: yarn install
Expand All @@ -31,5 +35,4 @@ jobs:
- name: Release
run: npx semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ee5fde0

Please sign in to comment.