Skip to content

Commit

Permalink
Update blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kisimediaDE authored May 24, 2024
1 parent 02d41df commit 3ee8093
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,46 @@ jobs:
# 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
Expand Down

0 comments on commit 3ee8093

Please sign in to comment.