aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-11-28 00:23:41 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2022-11-28 00:23:41 +0100
commit9a536c9974a976158e941cdbe3d3b4780f83e38a (patch)
treea4d073b63326600b831360204ec00e4214230b37 /.github/workflows/ci.yml
parentv4.0.1 (diff)
downloadcgitize-9a536c9974a976158e941cdbe3d3b4780f83e38a.tar.gz
cgitize-9a536c9974a976158e941cdbe3d3b4780f83e38a.zip
workflows/ci: set-output is deprecated
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ffb6131..facfb65 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -111,9 +111,9 @@ jobs:
# Building for ARM for every commit in master is too time-consuming.
run: |
if [ '${{ github.ref }}' = 'refs/heads/master' ]; then
- echo '::set-output name=platforms::linux/amd64'
+ echo 'platforms=linux/amd64' >> "$GITHUB_OUTPUT"
else
- echo '::set-output name=platforms::linux/amd64,linux/armhf'
+ echo 'platforms=linux/amd64,linux/armhf' >> "$GITHUB_OUTPUT"
fi
- name: Build and publish
uses: docker/build-push-action@v3