diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-11-28 00:20:37 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-11-28 00:20:37 +0100 |
commit | fecc555b7ba91844e90ac012a0bfe586faeb62a2 (patch) | |
tree | 3ebd2ed65af292a5777658cfda28b1adee9a6355 | |
parent | add GitHub Actions workflow (diff) | |
download | wg-api-web-fecc555b7ba91844e90ac012a0bfe586faeb62a2.tar.gz wg-api-web-fecc555b7ba91844e90ac012a0bfe586faeb62a2.zip |
workflows/ci: set-output is deprecatedv0.0.1
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6aac99..f3b46fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,9 +40,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 |