You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1008 B
YAML
34 lines
1008 B
YAML
name: npm package
|
|
|
|
on:
|
|
release:
|
|
types: [created]
|
|
|
|
jobs:
|
|
publish-gpr:
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20
|
|
registry-url: https://npm.pkg.github.com/
|
|
- name: Insert repository owner as scope into package name
|
|
run: |
|
|
node <<EOF
|
|
const fs = require('fs').promises;
|
|
fs.readFile('package.json', 'utf8').then((data) => JSON.parse(data)).then((json) => {
|
|
json.name = '@$(echo "$GITHUB_REPOSITORY" | sed 's/\/.\+//')/' + json.name;
|
|
console.info('Package name changed to %s', json.name);
|
|
return fs.writeFile('package.json', JSON.stringify(json), 'utf8');
|
|
}).catch(error => {
|
|
console.error(error);
|
|
process.exit(1);
|
|
});
|
|
EOF
|
|
- run: npm install
|
|
- run: npm publish
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
|