Skip to content

Commit

Permalink
fix script error due to unbalanced quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
hahn-kev committed Oct 2, 2024
1 parent e19b4d3 commit 1639649
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/fw-lite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ jobs:
node-version-file: './frontend/package.json'
- name: Set Version
id: setVersion
# set version to date in vYYYY-MM-DD-commitSha format
# set version to date in vYYYY-MM-DD-commitSha format, and semver version to YYYY.MM.DD
run: |
shortSha=$(echo ${{ github.sha }} | cut -c1-8)
echo "VERSION=v$(date --rfc-3339=date)-$shortSha" >> ${GITHUB_OUTPUT}
echo "SEMVER_VERSION="$(date +%Y.%m.%d)" >> ${GITHUB_OUTPUT}
echo "SEMVER_VERSION=$(date +%Y.%m.%d)" >> ${GITHUB_OUTPUT}
- name: Dotnet build
working-directory: backend/FwLite/FwLiteDesktop
run: |
Expand Down

0 comments on commit 1639649

Please sign in to comment.