Skip to content

[minor] Update blank.yml #17

[minor] Update blank.yml

[minor] Update blank.yml #17

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Version
# Controls when the workflow will run
on:
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
permissions:
contents: write
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Get pull request title and check for mayor, minor or patch
id: keyword
run: |
if [[ "${{ github.event.pull_request.title }}" == *"mayor"* ]]; then
echo "versionType=mayor" >> "$GITHUB_OUTPUT"
elif [[ "${{ github.event.pull_request.title }}" == *"minor"* ]]; then
echo "versionType=minor" >> "$GITHUB_OUTPUT"
elif [[ "${{ github.event.pull_request.title }}" == *"patch"* ]]; then
echo "versionType=patch" >> "$GITHUB_OUTPUT"
else
echo "versionType=none" >> "$GITHUB_OUTPUT"
fi
- name: Get next version
uses: reecetech/[email protected]
id: version
if: steps.keyword.outputs.versionType != 'none'
with:
scheme: semver
prerelease: false
draft: false
release_branch: main
increment: ${{ steps.keyword.outputs.versionType }}
- id: tag_name
if: steps.keyword.outputs.versionType != 'none'
run: echo "version=$(date +'%Y%m%d%H%M%S')" >> "$GITHUB_OUTPUT"
- name: Create version number file in release and update
if: steps.keyword.outputs.versionType != 'none'
run: |
echo ${{ steps.version.outputs.version }}\|${{ steps.tag_name.outputs.version }} > version
- name: Zip Release
if: steps.keyword.outputs.versionType != 'none'
run: |
zip -r release.zip .
- name: Upload Release
if: steps.keyword.outputs.versionType != 'none'
uses: softprops/[email protected]
with:
files: release.zip
tag_name: ${{ steps.version.outputs.version }}