Skip to content

Canary Release & Deploy #755

Canary Release & Deploy

Canary Release & Deploy #755

name: Canary Release & Deploy
on:
workflow_run:
workflows: [ "Test & Build" ]
types: [completed]
branches: [master]
jobs:
canary-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/dependencies-install
- uses: ./.github/workflows/artifacts-download
with:
workflow-id: ${{ github.event.workflow_run.workflow_id }}
download-core-artifacts: true
- run: yarn publish:canary
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}