Skip to content

v1.0.0-beta.4

v1.0.0-beta.4 #38

Workflow file for this run

name: Publish github package
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://npm.pkg.github.com"
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Publish to Github packages
run: cd nestjs-remix && npm publish --provenance --access public --registry=https://npm.pkg.github.com/
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}