Skip to content

ci(INFRAPRJ-6604): add install dependencies step #4

ci(INFRAPRJ-6604): add install dependencies step

ci(INFRAPRJ-6604): add install dependencies step #4

Workflow file for this run

name: Release crypto-icons package
on:
pull_request:
# push:
# branches:
# - main
# paths:
# - "lib/**"
jobs:
publish-gpr:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./lib/
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://npm.pkg.github.com/
- name: Install dependencies
run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.CI_BOT_TOKEN }}