diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5d31304..0100be9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dab7c88..227fd5e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: