File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- name : ' Switch context'
1
+ name : ' Switch context and export all environment variables '
2
2
inputs :
3
3
context-name :
4
4
description : ' Context name to switch to'
Original file line number Diff line number Diff line change @@ -29,14 +29,14 @@ jobs:
29
29
- name : Setup host
30
30
uses : ./.github/actions/setup-ubuntu-host
31
31
with :
32
- python-version : ' ${{ env.PYTHON_VERSION }}'
32
+ python-version : ${{ env.PYTHON_VERSION }}
33
33
- name : Generate Release Notes
34
34
run : python -m scripts.release.release_notes -s $INITIAL_COMMIT_SHA -v $INITIAL_VERSION -o release_notes_tmp.md
35
35
env :
36
36
# We can not use environments set via GitHub UI because they will
37
37
# not be available in the pull requests running from forks.
38
- INITIAL_COMMIT_SHA : ' ${{ env.INITIAL_COMMIT_SHA }}'
39
- INITIAL_VERSION : ' ${{ env.INITIAL_VERSION }}'
38
+ INITIAL_COMMIT_SHA : ${{ env.INITIAL_COMMIT_SHA }}
39
+ INITIAL_VERSION : ${{ env.INITIAL_VERSION }}
40
40
- name : Add disclaimer to release notes preview
41
41
run : |
42
42
echo -e "_:warning: (this preview might not be accurate if the PR is not rebased on current master branch)_\n" > release_notes_preview.md
Original file line number Diff line number Diff line change 30
30
- name : Setup host
31
31
uses : ./.github/actions/setup-ubuntu-host
32
32
with :
33
- python-version : ' ${{ steps.switch_context.outputs.python-version }}'
33
+ python-version : ${{ env.PYTHON_VERSION }}
34
34
- name : Check if changelog entry file was added in this PR
35
35
run : |
36
36
set -o pipefail
You can’t perform that action at this time.
0 commit comments