Skip to content

feat: [test, config, multi-url]: Added multi url for routes #29

feat: [test, config, multi-url]: Added multi url for routes

feat: [test, config, multi-url]: Added multi url for routes #29

Workflow file for this run

name: Publish package to GitHub Packages
on: push
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
if:
contains('
refs/heads/main
', github.ref)
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
# Defaults to the user or organization that owns the workflow file
scope: '@octocat'
- run: npm install --package-lock-only
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}