This repository has been archived by the owner on Jan 2, 2025. It is now read-only.
testing rc increment #2
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
name: Create Release Candidate | |
on: | |
push: | |
branches: | |
- "release/*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get Latest Release | |
id: get_latest_release | |
uses: pozetroninc/github-action-get-latest-release@master | |
with: | |
repository: ${{ github.repository }} | |
# excludes: rc, alpha, beta # Optional. Exclude keywords like rc, alpha, beta releases. | |
- name: Bump release candidate version | |
id: bump_version | |
uses: christian-draeger/[email protected] | |
with: | |
current-version: ${{ steps.get_latest_release.outputs.release }} | |
version-fragment: "rctest" | |
- name: LOG Release Candidate | |
run: | | |
echo "RELEASE: ${{ steps.bump_version.outputs.next-version }}" |