chore(deps): update nx to v19.8.4 (#1506) #1808
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: 🚀 Snapshots | |
on: | |
push: | |
branches: [main, 'v[0-9]+.x'] | |
jobs: | |
snapshots: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- run: npx nx build editor-demo | |
- run: tree ${{ env.DIST }} -P '*.html' | |
- id: info | |
run: | | |
echo "version=$(node -p "require('./projects/editor/package.json').version.split('.')?.[0]")" >> $GITHUB_OUTPUT | |
- name: Publish next snapshots | |
if: ${{ contains(github.head_ref || github.ref_name, 'main') }} | |
uses: s0/[email protected] | |
env: | |
REPO: self | |
FOLDER: ${{ env.DIST }} | |
BRANCH: snapshots/demo/next/${{ github.head_ref || github.ref_name }} | |
GITHUB_TOKEN: ${{ secrets.TAIGA_FAMILY_BOT_PAT }} | |
- name: Publish v${{ steps.info.outputs.version }}.x snapshots | |
uses: s0/[email protected] | |
env: | |
REPO: self | |
FOLDER: ${{ env.DIST }} | |
BRANCH: snapshots/demo/v${{ steps.info.outputs.version }}.x | |
GITHUB_TOKEN: ${{ secrets.TAIGA_FAMILY_BOT_PAT }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |