diff options
| author | TrainDoctor <traindoctor@protonmail.com> | 2022-08-11 16:28:40 -0700 |
|---|---|---|
| committer | TrainDoctor <traindoctor@protonmail.com> | 2022-08-11 16:48:50 -0700 |
| commit | ed0ae7c9e264a1cb262ed89dd539a3424ad6d0c4 (patch) | |
| tree | 9b5190ee1c78e8b5c1c29ecc9194f2517dc40811 /.github/workflows/build.yml | |
| parent | ea265ae6df86585a90af1bdb19151920d8945071 (diff) | |
| download | decky-loader-ed0ae7c9e264a1cb262ed89dd539a3424ad6d0c4.tar.gz decky-loader-ed0ae7c9e264a1cb262ed89dd539a3424ad6d0c4.zip | |
Removed un-needed trimming
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0b1a1de8..18463ecc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -117,10 +117,10 @@ jobs: id: ready_tag run: | export VERSION=${{ steps.old_tag.outputs.tag }} - export SEMVER=$(sed -r 's/(-.*)?-pre$//' <<< $VERSION) + # export SEMVER=$(sed -r 's/(-.*)?-pre$//' <<< $VERSION) echo "VERS: $VERSION" - echo "TO SEMVER: $SEMVER" - OUT=$(semver bump prerel "$SEMVER")-pre + # echo "TO SEMVER: $SEMVER" + OUT=$(semver bump prerel "$VERSION") echo "OUT: $OUT" echo ::set-output name=tag_name::$(sed -r 's/(-.*)?-pre$//' <<< $VERSION)-pre @@ -129,7 +129,7 @@ jobs: if: ${{ steps.ready_tag.outputs.tag_name && github.event_name == 'workflow_dispatch' }} with: tag: ${{ steps.ready_tag.outputs.tag_name }} - message: Nightly ${{ steps.ready_tag.outputs.tag_name }} + message: Pre-release ${{ steps.ready_tag.outputs.tag_name }} # - name: Release 📦 # uses: softprops/action-gh-release@v1 |
