Skip to content

Commit

Permalink
ci: define missing ext and fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuncan committed Mar 29, 2024
1 parent bd2e97b commit 092340c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ jobs:
echo "TAG=${{ github.ref }}" >> "${GITHUB_ENV}"
echo "RELEASE_NAME=${{ github.ref }}" >> "${GITHUB_ENV}"
else
echo "IS_CD=" >> "${GITHUB_ENV}"
echo "IS_CD=true" >> "${GITHUB_ENV}"
echo "TAG=dev" >> "${GITHUB_ENV}"
echo "RELEASE_NAME='Continuous dev'" >> "${GITHUB_ENV}"
fi
Expand Down Expand Up @@ -307,11 +307,18 @@ jobs:
echo "TAG=${{ github.ref }}" >> "${GITHUB_ENV}"
echo "RELEASE_NAME=${{ github.ref }}" >> "${GITHUB_ENV}"
else
echo "IS_CD=" >> "${GITHUB_ENV}"
echo "IS_CD=true" >> "${GITHUB_ENV}"
echo "TAG=dev" >> "${GITHUB_ENV}"
echo "RELEASE_NAME='Continuous dev'" >> "${GITHUB_ENV}"
fi
- name: (GHO) Define EXT
uses: carlkidcrypto/[email protected]
with:
macos: echo "EXT=" >> "${GITHUB_ENV}"
linux: echo "EXT=" >> "${GITHUB_ENV}"
windows: echo "EXT=.exe" >> "${env:GITHUB_ENV}"

- uses: actions/download-artifact@v4
with:
name: RCM-client-${{ matrix.image || matrix.os }}-turbovnc-${{ matrix.turbovnc-version }}
Expand Down

0 comments on commit 092340c

Please sign in to comment.