Skip to content

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

ci(INFRAPRJ-6604): add install dependencies step

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

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
- name: Install dependencies
run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.CI_BOT_TOKEN }}