v0.1.19 #31
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: Publish Package | |
on: | |
push: | |
tags: | |
- v[0].[0-9]+.[0-9]+* | |
jobs: | |
publish-package: | |
name: Publish Package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: yarn | |
- name: Install Dependencies | |
run: yarn install --immutable | |
- name: Test Packages | |
run: yarn workspaces foreach -A run test run | |
- name: Publish Package | |
run: | | |
yarn workspace @idealjs/sapling npm publish | |
yarn workspace @idealjs/eslint-plugin-sapling npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |