1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-23 01:55:48 -05:00

Try to fix version number

This commit is contained in:
Jon Beniston 2023-09-24 10:17:53 +01:00
parent ddbac0e503
commit c875b307ca

View File

@ -107,7 +107,7 @@ jobs:
# Need with clause so git describe --tags works?
- name: Get version
id: get_version
run: echo "version=$(git describe --tags | cut -c2-)" >> $env:GITHUB_OUTPUT
run: echo "version=$(git describe --tags | cut -c2-)" >> $GITHUB_OUTPUT
# Requires git fetch --tags upstream to have been run!
- name: Get version 3
id: get_version3
@ -117,7 +117,7 @@ jobs:
id: get_os_version
run: |
sw_vers -productVersion
echo "os_version=$(sw_vers -productVersion)" >> $env:GITHUB_OUTPUT
echo "os_version=$(sw_vers -productVersion)" >> $GITHUB_OUTPUT
- name: Diplay version
run: |
echo ${{ steps.get_version.outputs.version }}