mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-17 08:47:49 +00:00
better equivalency checking
This commit is contained in:
@@ -34,6 +34,11 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Print input
|
||||||
|
run : |
|
||||||
|
echo "release: ${{ github.event.inputs.release }}\n"
|
||||||
|
echo "bump: ${{ github.event.inputs.bump }}\n"
|
||||||
|
|
||||||
- name: Checkout 🧰
|
- name: Checkout 🧰
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
@@ -209,7 +214,7 @@ jobs:
|
|||||||
export VERSION=${{ steps.latest_release.outputs.release }}
|
export VERSION=${{ steps.latest_release.outputs.release }}
|
||||||
echo "VERS: $VERSION"
|
echo "VERS: $VERSION"
|
||||||
OUT="notsemver"
|
OUT="notsemver"
|
||||||
if [[ "${{github.event.inputs.bump}}" != "none" ]]; then
|
if [[ ! ${{ github.event.inputs.bump }} == "none" ]]; then
|
||||||
printf "bumping by release then by selected\n"
|
printf "bumping by release then by selected\n"
|
||||||
OUT=$(semver bump release "$VERSION")
|
OUT=$(semver bump release "$VERSION")
|
||||||
printf "OUT: ${OUT}\n"
|
printf "OUT: ${OUT}\n"
|
||||||
|
|||||||
Reference in New Issue
Block a user