Skip to content

πŸ”– 3.2.6-rc3

πŸ”– 3.2.6-rc3 #11

Workflow file for this run

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
- name: πŸ”¨ Setup node
uses: actions/setup-node@v3
with:
node-version: '10.x'
registry-url: 'https://registry.npmjs.org'
scope: '@screeps'
- name: πŸ‘· Install
run: npm ci
- name: πŸ“¦οΈ Publish package (npmjs)
if: github.ref_name == 'master'
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
- name: πŸ“¦οΈ Publish tagged package (npmjs)
if: github.ref_name != 'master'
run: npm publish --tag ${{ github.ref_name }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
# 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: πŸ“¦οΈ Publish package (github registry)
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}