⚠️ Publish canary #256
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 canary | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 20 * * 1-5' # At UTC 20:00 (MSK 23:00) on every day-of-week from Monday through Friday | |
jobs: | |
build: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
name: Packages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: taiga-family/ci/actions/setup/checkout@v1.45.1 | |
- uses: taiga-family/ci/actions/setup/variables@v1.45.1 | |
- uses: taiga-family/ci/actions/setup/node@v1.45.1 | |
- uses: taiga-family/ci/actions/setup/config/npm@v1.45.1 | |
with: | |
token: ${{ secrets.TAIGA_UI_SCOPE_NPM_TOKEN }} | |
- run: npm run run-many:build:libs | |
- run: npx ts-node ./scripts/publish-canary.ts | |
concurrency: | |
group: publish-canary-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |