Skip to content

Release 0.0.54

Release 0.0.54 #24

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:
registry-url: https://npm.pkg.github.com

Check failure on line 29 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: 29, Col: 13): A mapping was not expected
scope: "@irsyadadl"