We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa1f55 commit 1e8e8c7Copy full SHA for 1e8e8c7
.github/workflows/ci-pipeline.yaml
@@ -56,12 +56,12 @@ jobs:
56
steps:
57
- id: check-mssql
58
env:
59
- MSSQL_VECTOR_REGISTRY: ${{ secrets.MSSQL_VECTOR_REGISTRY }}
+ REGISTRY: ${{ secrets.MSSQL_VECTOR_REGISTRY }}
60
run: |
61
- if [[ -n "$MSSQL_VECTOR_REGISTRY" ]]; then
62
- echo "::set-output name=defined::true"
+ if [[ -n "$REGISTRY" ]]; then
+ echo "defined=true" >> "$GITHUB_OUTPUT"
63
else
64
- echo "::set-output name=defined::false"
+ echo "defined=false" >> "$GITHUB_OUTPUT"
65
fi
66
67
test:
0 commit comments