Skip to content

initial commit

initial commit #7

Workflow file for this run

name: Publish to GitHub Packages
on:
release:
types: [created]
workflow_dispatch:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: '20.x'
registry-url: 'https://npm.pkg.github.com'
scope: '@tailscale'
- name: Install deps
run: yarn install --frozen-lockfile
- name: Build package
run: yarn build
- name: Publish package
run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}