Skip to content

Commit

Permalink
Setting env vars from release info
Browse files Browse the repository at this point in the history
  • Loading branch information
spaceo committed May 15, 2024
1 parent 6529ef6 commit e83770c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/create-cms-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ jobs:
run: cat release-info.json
- name: Set env variables
run: |
RELEASE_BRANCH=$(jq .release_branch release-info.json)
RELEASE_DOWNLOAD_URL=$(jq .release_download_url release-info.json)
echo "RELEASE_BRANCH=$RELEASE_BRANCH" >> $GITHUB_ENV
echo "RELEASE_DOWNLOAD_URL=$RELEASE_DOWNLOAD_URL" >> $GITHUB_ENV
jq .release_branch release-info.json
# RELEASE_BRANCH=$(jq .release_branch release-info.json)
# RELEASE_DOWNLOAD_URL=$(jq .release_download_url release-info.json)
# echo "RELEASE_BRANCH=$RELEASE_BRANCH" >> $GITHUB_ENV
# echo "RELEASE_DOWNLOAD_URL=$RELEASE_DOWNLOAD_URL" >> $GITHUB_ENV
# invoke-external-pr-workflow:
# runs-on: ubuntu-latest
Expand Down

0 comments on commit e83770c

Please sign in to comment.