-
Notifications
You must be signed in to change notification settings - Fork 22
41 lines (41 loc) · 1.21 KB
/
npm.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Build npm package
on:
push:
branches:
- '**'
jobs:
build:
if: contains(github.event.head_commit.message, '🔖')
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: ⤵️ Checkout
uses: actions/checkout@v3
# Setup .npmrc file to publish to GitHub Packages
- name: 🔨 Setup node (github registry)
uses: actions/setup-node@v3
with:
node-version: '10.x'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@screeps'
- name: 👷 Install
run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 📦️ Publish package (github registry)
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 🔨 Setup node (npmjs)
uses: actions/setup-node@v3
with:
node-version: '10.x'
registry-url: 'https://registry.npmjs.org'
scope: '@screeps'
- name: 📦️ Publish package (npmjs)
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}