diff --git a/.github/workflows/build_push.yaml b/.github/workflows/build_push.yaml index 0369ed23a..020123100 100644 --- a/.github/workflows/build_push.yaml +++ b/.github/workflows/build_push.yaml @@ -110,7 +110,7 @@ jobs: id: notebook-name shell: bash run: | - echo ::set-output name=NOTEBOOK_NAME::${{ matrix.notebook }} + echo NOTEBOOK_NAME=${{ matrix.notebook }} >> $GITHUB_OUTPUT # Connect to Azure Container registry (ACR) - uses: azure/docker-login@v1 @@ -183,7 +183,7 @@ jobs: github.event_name == 'pull_request' && contains( github.event.pull_request.labels.*.name, 'auto-deploy') ) - run: echo "::set-output name=boolean::true" + run: echo 'boolean=true' >> $GITHUB_OUTPUT # Pull the local image back, then "build" it (will just tag the pulled image) - name: Pull image back from local repo diff --git a/make_helpers/get_branch_name.sh b/make_helpers/get_branch_name.sh index 42cfb47a5..6ecd9aac8 100755 --- a/make_helpers/get_branch_name.sh +++ b/make_helpers/get_branch_name.sh @@ -21,7 +21,6 @@ if [[ $GITHUB_ACTIONS == "true" ]] ; then BRANCH_NAME="" fi - # echo "::set-output name=branch_name::$BRANCH_NAME" else BRANCH_NAME=`git rev-parse --abbrev-ref HEAD` fi