Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update build_push.yaml: deprecate set-output #491

Merged
merged 9 commits into from
Aug 4, 2023
4 changes: 2 additions & 2 deletions .github/workflows/build_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion make_helpers/get_branch_name.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down