Skip to content

ci: restore snapshot v3.x (#5062) #2161

ci: restore snapshot v3.x (#5062)

ci: restore snapshot v3.x (#5062) #2161

Workflow file for this run

name: ⚙️ Validate release tag
on:
push:
branches: [main, 'release/*']
jobs:
validate-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- uses: taiga-family/ci/actions/[email protected]
id: nodejs-workspace
- name: Get last tag
id: info
run: echo "tag=$(git describe HEAD --abbrev=0)" >> $GITHUB_OUTPUT
- name: Show an error if the tag does not match
if:
${{ steps.nodejs-workspace.outputs.root-package-version != steps.info.outputs.tag &&
!contains(steps.nodejs-workspace.outputs.root-package-version, '-rc') }}
run: |
echo "Version from package.json: ${{ steps.nodejs-workspace.outputs.root-package-version }}"
echo "Last git tag: ${{ steps.info.outputs.tag }}"
exit 1
concurrency:
group: validate-tag-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true