get rid of set-output
This commit is contained in:
parent
b11a0c814e
commit
08e16ac68d
2 changed files with 6 additions and 6 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
|
@ -17,11 +17,11 @@ jobs:
|
||||||
- name: Translate Repo Name For Build Tools filename_prefix
|
- name: Translate Repo Name For Build Tools filename_prefix
|
||||||
id: repo-name
|
id: repo-name
|
||||||
run: |
|
run: |
|
||||||
echo ::set-output name=repo-name::$(
|
echo repo-name=$(
|
||||||
echo ${{ github.repository }} |
|
echo ${{ github.repository }} |
|
||||||
awk -F '\/' '{ print tolower($2) }' |
|
awk -F '\/' '{ print tolower($2) }' |
|
||||||
tr '_' '-'
|
tr '_' '-'h
|
||||||
)
|
)>> $GITHUB_OUTPUTS
|
||||||
- name: Set up Python 3.x
|
- name: Set up Python 3.x
|
||||||
uses: actions/setup-python@v1
|
uses: actions/setup-python@v1
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
|
@ -19,11 +19,11 @@ jobs:
|
||||||
- name: Translate Repo Name For Build Tools filename_prefix
|
- name: Translate Repo Name For Build Tools filename_prefix
|
||||||
id: repo-name
|
id: repo-name
|
||||||
run: |
|
run: |
|
||||||
echo ::set-output name=repo-name::$(
|
echo repo-name=$(
|
||||||
echo ${{ github.repository }} |
|
echo ${{ github.repository }} |
|
||||||
awk -F '\/' '{ print tolower($2) }' |
|
awk -F '\/' '{ print tolower($2) }' |
|
||||||
tr '_' '-'
|
tr '_' '-'h
|
||||||
)
|
)>> $GITHUB_OUTPUTS
|
||||||
- name: Set up Python 3.7
|
- name: Set up Python 3.7
|
||||||
uses: actions/setup-python@v1
|
uses: actions/setup-python@v1
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue