Skip to content

Publish

Publish #23

Workflow file for this run

name: Publish
on:
workflow_dispatch:
jobs:
run:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: master
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.13'
- name: Install
run: yarn install
- name: Npm Publish
run: |
yarn version apply --all
yarn workspaces changed foreach --verbose --topological --no-private npm publish --access public
env:
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish to GitHub Registry
run: |
echo "@atls:registry=https://npm.pkg.github.com" >> .npmrc
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> .npmrc
yarn workspaces changed foreach --verbose --topological --no-private npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Commit changes
uses: EndBug/add-and-commit@v9
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
with:
author_name: Atls Github Bot
author_email: [email protected]
message: 'chore(common): publish'
branch: master
- name: Create GitHub Release
run: |
TAG_NAME=$(git describe --tags --abbrev=0)
gh release create $TAG_NAME \
--title "Release $TAG_NAME" \
--notes "Release notes for $TAG_NAME"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}