File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 2828 - name : Get Repo Owner
2929 id : get_repo_owner
3030 run : >
31- echo ::set-output name=repo_owner::$(echo ${{ github.repository_owner }} |
32- tr '[:upper:]' '[:lower:]')
31+ echo "repo_owner=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT
3332 - name : Publish functions
3433 run : >
3534 OWNER="${{ steps.get_repo_owner.outputs.repo_owner }}"
Original file line number Diff line number Diff line change @@ -30,12 +30,11 @@ jobs:
3030 uses : docker/setup-buildx-action@v3
3131 - name : Get TAG
3232 id : get_tag
33- run : echo ::set-output name= TAG:: latest-dev
33+ run : echo " TAG= latest-dev" >> $GITHUB_OUTPUT
3434 - name : Get Repo Owner
3535 id : get_repo_owner
3636 run : >
37- echo ::set-output name=repo_owner::$(echo ${{ github.repository_owner }} |
38- tr '[:upper:]' '[:lower:]')
37+ echo "repo_owner=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT
3938 - name : Docker Login
4039 run : >
4140 echo ${{secrets.GITHUB_TOKEN}} |
You can’t perform that action at this time.
0 commit comments