Skip to content

Commit

Permalink
👷 change publish order
Browse files Browse the repository at this point in the history
  • Loading branch information
o4kapuk committed Nov 25, 2023
1 parent 2a53962 commit 4c14052
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,27 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
- name: ⤵️ Checkout
uses: actions/checkout@v3
- name: 🔨 Setup node
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
- name: 👷 Install
run: npm ci
- name: Publish (github)
- name: 📦️ Publish (npmjs)
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v3
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://registry.npmjs.org'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@screeps'
- name: Publish (npmjs)
- name: 📦️ Publish (github)
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4c14052

Please sign in to comment.