Release 0.0.54 #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / Publish Package to npmjs.com and GitHub PackagesInvalid workflow file
|
||
scope: "@irsyadadl" |