From 0be9d9956d8ca77bda1c5c989d35bbfe79dc28f0 Mon Sep 17 00:00:00 2001 From: anoburn Date: Sat, 13 Jul 2024 12:01:40 +0200 Subject: [PATCH] update set-output syntax --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f9388e2..988e7ef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -196,15 +196,15 @@ jobs: steps: - name: Get current date/time id: date - run: echo "::set-output name=date::$(date +'%Y%m%d-%H%M')" + run: echo "date=$(date +'%Y%m%d-%H%M')" >>$GITHUB_OUTPUT - name: Generate release text id: release_text run: > - echo "::set-output name=release_text::$(echo 'Precompiled firmware files for ARDUX

+ echo "release_text=$(echo 'Precompiled firmware files for ARDUX

Download a firmware file by expanding "Assets", right clicking, and choosing "Save File As" or "Save Link As".
${{ github.event.inputs.releaseBody }}
Released on ${{ steps.date.outputs.date }}. -

${{ steps.docker_build.outputs.commits }}')" +

${{ steps.docker_build.outputs.commits }}')" >>$GITHUB_OUTPUT - name: Download build artifacts for release uses: actions/download-artifact@v4 with: