Skip to content

chore: Origami v3 "o3" migration with design foundation enhancements #1228

chore: Origami v3 "o3" migration with design foundation enhancements

chore: Origami v3 "o3" migration with design foundation enhancements #1228

on:
push:
branches:
- main
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@v3
id: release
with:
token: ${{ secrets.ORIGAMI_GITHUB_TOKEN }}
command: manifest
monorepo-tags: true
- uses: actions/checkout@v2
if: ${{ steps.release.outputs.releases_created }}
- uses: actions/setup-node@v2
with:
cache: 'npm'
node-version: 18
registry-url: 'https://registry.npmjs.org'
if: ${{ steps.release.outputs.releases_created }}
- run: npm ci
if: ${{ steps.release.outputs.releases_created }}
- run: node ./scripts/publish.js '${{toJSON(steps.release.outputs)}}'
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
SLACK_ANNOUNCER_AUTH_TOKEN: ${{secrets.SLACK_ANNOUNCER_AUTH_TOKEN}}
SLACK_ANNOUNCER_CHANNEL_ID: ${{secrets.SLACK_ANNOUNCER_CHANNEL_ID}}
if: ${{ steps.release.outputs.releases_created }}