Skip to content

πŸ‘· build docker image #1

πŸ‘· build docker image

πŸ‘· build docker image #1

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
# 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 }}
- πŸ”¨ Setup node (npmjs)
uses: actions/setup-node@v3

Check failure on line 33 in .github/workflows/npm.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/npm.yml

Invalid workflow file

You have an error in your yaml syntax on line 33
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 }}