Skip to content

Merge branch 'main' of https://github.com/Watts-Lab/surveys #75

Merge branch 'main' of https://github.com/Watts-Lab/surveys

Merge branch 'main' of https://github.com/Watts-Lab/surveys #75

Workflow file for this run

name: Publish package to GitHub Packages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}