Skip to content

Sparo GitHub Release #2

Sparo GitHub Release

Sparo GitHub Release #2

name: Sparo GitHub Release
on:
push:
tags:
- "sparo_v*.*.*"
workflow_dispatch:
inputs:
tag_name:
description: 'Tag name for release'
required: true
default: ''
jobs:
sparo-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
token: ${{ secrets.BOT_ACCESS_TOKEN }}
- name: git config email
run: git config --local user.email [email protected]
- name: git config name
run: git config --local user.name tiktokbot
- name: Extract version from tag
id: extract_version
run: |
# Get the tag name from GITHUB_REF (e.g., refs/tags/sparo_v1.0.0)
TAG_NAME="${GITHUB_REF##*/}"
# Extract the version number (v1.0.0) using regex
VERSION=$(echo "$TAG_NAME" | sed -E 's/^.*_v([0-9]+\.[0-9]+\.[0-9]+.*)$/\1/')
echo "Extracted version: $VERSION"
# Set the output for later use
echo "::set-output name=version::$VERSION"
- name: Generate Release Description
run : node common/scripts/install-run-rush.js generate-release-description --project sparo --version ${{ steps.extract_version.outputs.version }}
- name: Sparo GitHub Release
uses: softprops/action-gh-release@v2
if: ${{ exists('RELEASE/SPARO.md') }}

Check failure on line 38 in .github/workflows/sparo-gh-release.yaml

View workflow run for this annotation

GitHub Actions / Sparo GitHub Release

Invalid workflow file

The workflow is not valid. .github/workflows/sparo-gh-release.yaml (Line: 38, Col: 13): Unrecognized function: 'exists'. Located at position 1 within expression: exists('RELEASE/SPARO.md')
with:
draft: true
body_path: RELEASE/SPARO.md