π· change npm publish order #7
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: 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: π· Install | |
run: npm ci | |
- name: π¨ Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '10.x' | |
- name: π¦οΈ Publish package (npmjs) | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
- 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: π¦οΈ Publish package (github registry) | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |