mirror of
https://github.com/urbit/shrub.git
synced 2024-12-01 06:35:32 +03:00
ba426ef78d
'working-directory' can just be specified on-site.
64 lines
1.7 KiB
YAML
64 lines
1.7 KiB
YAML
name: publish-npm-packages
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'jt/npm-publish'
|
|
jobs:
|
|
publish-api:
|
|
runs-on: ubuntu-latest
|
|
name: "Publish '@urbit/api' if a new version is available"
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
lfs: true
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
- run: 'npm install'
|
|
working-directory: 'pkg/npm/api'
|
|
- uses: JS-DevTools/npm-publish@v1
|
|
with:
|
|
check-version: true
|
|
dry-run: true
|
|
package: './pkg/npm/api/package.json'
|
|
token: ${{ secrets.NPM_TOKEN }}
|
|
|
|
publish-http-api:
|
|
runs-on: ubuntu-latest
|
|
name: "Publish '@urbit/http-api' if a new version is available"
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
lfs: true
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
- run: 'npm install'
|
|
working-directory: 'pkg/npm/http-api'
|
|
- uses: JS-DevTools/npm-publish@v1
|
|
with:
|
|
check-version: true
|
|
dry-run: true
|
|
package: './pkg/npm/http-api/package.json'
|
|
token: ${{ secrets.NPM_TOKEN }}
|
|
|
|
publish-eslint-config:
|
|
runs-on: ubuntu-latest
|
|
name: "Publish '@urbit/eslint-config' if a new version is available"
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
lfs: true
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
- run: 'npm install'
|
|
working-directory: 'pkg/npm/eslint-config'
|
|
- uses: JS-DevTools/npm-publish@v1
|
|
with:
|
|
check-version: true
|
|
dry-run: true
|
|
package: './pkg/npm/eslint-config/package.json'
|
|
token: ${{ secrets.NPM_TOKEN }}
|
|
|