Skip to content

v1.4.5

v1.4.5 #75

Workflow file for this run

name: Publish Package to npmjs
on:
release:
types: [created]
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: "Checkout"
uses: actions/checkout@v3
with:
fetch-depth: 0
# Setup .npmrc file to publish to GitHub Packages
- name: "Setup NodeJs v16 and npm registry"
uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
scope: '@aleph-indexer'
- name: "Build packages"
run: npm ci
# Internally calls build:ts
- name: "Publish packages"
run: npm run publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}