Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
urothis committed Dec 31, 2023
1 parent f834f91 commit ad6ce55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .actions/nwserver/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ runs:
id: nwn
run: |
cd ${{ github.workspace }}/DepotDownloader/DepotDownloader/depots/${{ inputs.nwn_win_bin_depot_id }}/*/bin/win32/
VERSION = $(peres -v nwserver.exe -f csv | grep -v DEBUG | cut -d'.' -f2- | sed -n 2p)
MAJOR = $(semver get major $VERSION)
MINOR = $(semver get minor $VERSION)
PATCH = $(semver get patch $VERSION)
VERSION=$(peres -v nwserver.exe -f csv | grep -v DEBUG | cut -d'.' -f2- | sed -n 2p)
MAJOR=$(semver get major $VERSION)
MINOR=$(semver get minor $VERSION)
PATCH=$(semver get patch $VERSION)
echo version=$VERSION >> $GITHUB_OUTPUT
echo major=$MAJOR >> $GITHUB_OUTPUT
echo minor=$MINOR >> $GITHUB_OUTPUT
Expand Down

0 comments on commit ad6ce55

Please sign in to comment.