Skip to content

chore: changelog (#6631) #2991

chore: changelog (#6631)

chore: changelog (#6631) #2991

Workflow file for this run

name: 🚀 Snapshots
on:
push:
branches: [main, 'v[0-9]+.x', 'release/**']
workflow_dispatch:
inputs:
updateMain:
type: boolean
required: false
description: update main snapshots
jobs:
snapshots-next:
if: ${{ !contains(github.head_ref || github.ref_name, 'release/') }}
name: next
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
- run: npx nx build demo -c next
- run: tree ${{ env.DIST }} -P '*.html'
- name: Publish snapshots
uses: s0/[email protected]
env:
REPO: self
FOLDER: ${{ env.DIST }}/next
BRANCH: snapshots/demo/next/${{ github.head_ref || github.ref_name }}
GITHUB_TOKEN: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
snapshots-of-release:
if: ${{ contains(github.head_ref || github.ref_name, 'release/') || github.event.inputs.updateMain == 'true' }}
name: production
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
id: nodejs-workspace
- run: npx nx prerender demo
- run: tree ${{ env.DIST }} -P '*.html'
- name: Publish snapshots
uses: s0/[email protected]
env:
REPO: self
FOLDER: ${{ env.DIST }}
BRANCH: snapshots/demo/v${{ steps.nodejs-workspace.outputs.root-package-major-version }}.x
GITHUB_TOKEN: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
concurrency:
group: snapshots-${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true