summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrainDoctor <traindoctor@protonmail.com>2022-08-11 16:54:13 -0700
committerTrainDoctor <traindoctor@protonmail.com>2022-08-11 16:54:13 -0700
commit6c48dfe7f67451e61244201e128141e32e0c4dd4 (patch)
treebc6d626a3721e4d57ceb85004059358033344428
parented0ae7c9e264a1cb262ed89dd539a3424ad6d0c4 (diff)
downloaddecky-loader-6c48dfe7f67451e61244201e128141e32e0c4dd4.tar.gz
decky-loader-6c48dfe7f67451e61244201e128141e32e0c4dd4.zip
Actually send the proper variable out
-rw-r--r--.github/workflows/build.yml4
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 18463ecc..dc7b1238 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -117,12 +117,10 @@ jobs:
id: ready_tag
run: |
export VERSION=${{ steps.old_tag.outputs.tag }}
- # export SEMVER=$(sed -r 's/(-.*)?-pre$//' <<< $VERSION)
echo "VERS: $VERSION"
- # echo "TO SEMVER: $SEMVER"
OUT=$(semver bump prerel "$VERSION")
echo "OUT: $OUT"
- echo ::set-output name=tag_name::$(sed -r 's/(-.*)?-pre$//' <<< $VERSION)-pre
+ echo ::set-output name=tag_name::$OUT
- name: Push tag 📤
uses: rickstaa/action-create-tag@v1.3.2