Skip to content

Commit

Permalink
Add step to install node dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mesaugat committed May 3, 2024
1 parent cce9225 commit 8462118
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,27 +60,31 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Ruby
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'

- name: Setup Node
- name: Install gems
run: |
gem install github_changelog_generator
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'

- name: Install node dependencies
run: yarn

- name: Install hub
run: |
sudo apt update
sudo apt install hub
hub --version
- name: Install GitHub changelog generator
run: |
gem install github_changelog_generator
- name: Run release script
env:
RIBBY_GITHUB_TOKEN: ${{ secrets.RIBBY_GITHUB_TOKEN }}
Expand Down

0 comments on commit 8462118

Please sign in to comment.