Skip to content

Release 0.0.53

Release 0.0.53 #23

Workflow file for this run

name: Publish Package to npmjs.com and GitHub Packages
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
scope: "@irsyadadl"
- name: Publish to npm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
- name: Publish to GitHub Packages
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.GH_TOKEN}}
with:

Check failure on line 28 in .github/workflows/release-package.yml

View workflow run for this annotation

GitHub Actions / Publish Package to npmjs.com and GitHub Packages

Invalid workflow file

The workflow is not valid. .github/workflows/release-package.yml (Line: 28, Col: 9): Unexpected value 'with'
registry-url: https://npm.pkg.github.com
scope: "@irsyadadl"