Skip to content

Merge branch 'main' of https://github.com/raizdev/schedule-x-plugins #15

Merge branch 'main' of https://github.com/raizdev/schedule-x-plugins

Merge branch 'main' of https://github.com/raizdev/schedule-x-plugins #15

Workflow file for this run

name: Publish to npm
on:
push:
branches:
- main
permissions:
contents: write
packages: write
id-token: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org/'
- name: Install dependencies
run: npm ci
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run release