Skip to content

Commit

Permalink
trying different concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed Dec 18, 2023
1 parent 5bb6169 commit bad1810
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/deploy-documents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,11 @@ jobs:
id: determine-versioning
run: |
# Read the first line from the VERSION file
DATA=$(head -n 1 ./VERSION)
# Set the GitHub Actions environment variable
echo "data=${DATA}"
echo "data=${DATA}" >> $GITHUB_ENV
VER=$(head -n 1 ./VERSION)
DATA='data='
DATA+=$VER
echo ${DATA}
echo $DATA >> $GITHUB_ENV
- name: Deploy
if: fromJson(steps.determine-versioning.outputs.data).version != null
Expand Down

0 comments on commit bad1810

Please sign in to comment.