get rid of set-output

This commit is contained in:
Jeff Epler 2022-12-20 10:26:02 -06:00
parent b11a0c814e
commit 08e16ac68d
No known key found for this signature in database
GPG key ID: D5BF15AB975AB4DE
2 changed files with 6 additions and 6 deletions

View file

@ -17,11 +17,11 @@ jobs:
- name: Translate Repo Name For Build Tools filename_prefix
id: repo-name
run: |
echo ::set-output name=repo-name::$(
echo repo-name=$(
echo ${{ github.repository }} |
awk -F '\/' '{ print tolower($2) }' |
tr '_' '-'
)
tr '_' '-'h
)>> $GITHUB_OUTPUTS
- name: Set up Python 3.x
uses: actions/setup-python@v1
with:

View file

@ -19,11 +19,11 @@ jobs:
- name: Translate Repo Name For Build Tools filename_prefix
id: repo-name
run: |
echo ::set-output name=repo-name::$(
echo repo-name=$(
echo ${{ github.repository }} |
awk -F '\/' '{ print tolower($2) }' |
tr '_' '-'
)
tr '_' '-'h
)>> $GITHUB_OUTPUTS
- name: Set up Python 3.7
uses: actions/setup-python@v1
with: