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 fc6ccb2 commit de7c6c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/create-cms-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
- name: Set env variables
run: |
RELEASE_BRANCH=$(jq -r '.release_branch' release-info.json)
echo $RELEASE_BRANCH
RELEASE_DOWNLOAD_URL=$(jq -r '.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 de7c6c8

Please sign in to comment.