- prove that is not soo #25
Workflow file for this run
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
on: | |
push: | |
workflow_dispatch: | |
env: | |
MAJOR_MINOR_PATCH: 1.0.0 | |
name: sample-git-tag-ci | |
jobs: | |
ci: | |
name: ci | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Log ACTIONS_STEP_DEBUG value | |
run: | | |
echo "debug: ${{ secrets.ACTIONS_STEP_DEBUG }}" | |
- name: Version suffix | |
id: version_suffix | |
run: | | |
if [[ ${{ github.ref }} == "refs/heads/${{ github.event.repository.default_branch }}" ]]; then | |
echo 'for default branch pipeline' | |
USE=false | |
SUFFIX='' | |
EXTENSION='' | |
else | |
echo 'for feature branch pipeline' | |
USE=true | |
SUFFIX=${GITHUB_REF##*/}.${{github.run_number}} | |
EXTENSION="-${SUFFIX}" | |
fi | |
echo 'use_version_suffix' $USE | |
echo 'version_suffix: ' $SUFFIX | |
echo "use_version_suffix=$USE" >> $GITHUB_OUTPUT | |
echo "version_suffix=$SUFFIX" >> $GITHUB_OUTPUT | |
echo "extension=$EXTENSION" >> $GITHUB_OUTPUT | |
- name: Semantic version | |
id: semantic_version | |
run: | | |
SEMANTIC_VERSION="${{ env.MAJOR_MINOR_PATCH }}" | |
SEMANTIC_VERSION="${SEMANTIC_VERSION}${{ steps.version_suffix.outputs.extension }}" | |
echo 'MAJOR_MINOR_PATCH: ' $MAJOR_MINOR_PATCH | |
echo 'SEMANTIC_VERSION: ' $SEMANTIC_VERSION | |
echo "semantic_version=$SEMANTIC_VERSION" >> $GITHUB_OUTPUT | |
echo "major_minor_patch=$MAJOR_MINOR_PATCH" >> $GITHUB_OUTPUT | |
- name: Test | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
console.debug('Debug message: Action is running'); | |
- name: Delete Git Tags | |
uses: KinNeko-De/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |