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

Replace deprecated command with environment file #1871

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/image-arm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
# end of optional handling for multi line json
echo "::set-output name=matrix::{\"include\": $content }"
echo "matrix={\"include\": $content }" >> $GITHUB_OUTPUT

# The matrix for standard (provider) images
get-standard-matrix:
Expand All @@ -55,7 +55,7 @@ jobs:
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
# end of optional handling for multi line json
echo "::set-output name=matrix::{\"include\": $content }"
echo "matrix={\"include\": $content }" >> $GITHUB_OUTPUT

build-arm-core:
uses: ./.github/workflows/reusable-docker-arm-build.yaml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
content="${content//$'\r'/'%0D'}"
# end of optional handling for multi line json
# end of optional handling for multi line json
echo "::set-output name=matrix::{\"include\": $content }"
echo "matrix={\"include\": $content }" >> $GITHUB_OUTPUT

get-framework-matrix:
runs-on: ubuntu-latest
Expand All @@ -51,7 +51,7 @@ jobs:
content="${content//$'\r'/'%0D'}"
# end of optional handling for multi line json
# end of optional handling for multi line json
echo "::set-output name=matrix::{\"include\": $content }"
echo "matrix={\"include\": $content }" >> $GITHUB_OUTPUT

core:
uses: ./.github/workflows/reusable-build-flavor.yaml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-arm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
# end of optional handling for multi line json
echo "::set-output name=matrix::{\"include\": $content }"
echo "matrix={\"include\": $content }" >> $GITHUB_OUTPUT

# The matrix for standard (provider) images
get-standard-matrix:
Expand All @@ -47,7 +47,7 @@ jobs:
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
# end of optional handling for multi line json
echo "::set-output name=matrix::{\"include\": $content }"
echo "matrix={\"include\": $content }" >> $GITHUB_OUTPUT

build-arm-core:
runs-on: ${{ matrix.worker }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
# end of optional handling for multi line json
echo "::set-output name=matrix::{\"include\": $content }"
echo "matrix={\"include\": $content }" >> $GITHUB_OUTPUT

# The matrix for standard (provider) images
get-standard-matrix:
Expand All @@ -52,7 +52,7 @@ jobs:
content="${content//$'\r'/'%0D'}"

# end of optional handling for multi line json
echo "::set-output name=matrix::{\"include\": $content }"
echo "matrix={\"include\": $content }" >> $GITHUB_OUTPUT

get-framework-matrix:
runs-on: ubuntu-latest
Expand All @@ -70,7 +70,7 @@ jobs:
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
# end of optional handling for multi line json
echo "::set-output name=matrix::{\"include\": $content }"
echo "matrix={\"include\": $content }" >> $GITHUB_OUTPUT

build-framework:
runs-on: kvm
Expand Down