aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/nightly-release.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/nightly-release.yaml')
-rw-r--r--.github/workflows/nightly-release.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/nightly-release.yaml b/.github/workflows/nightly-release.yaml
index af61a92..9b23093 100644
--- a/.github/workflows/nightly-release.yaml
+++ b/.github/workflows/nightly-release.yaml
@@ -34,7 +34,7 @@ jobs:
STALE=true
fi
fi
- echo "::set-output name=stale::$STALE"
+ echo "stale=$STALE" >> $GITHUB_OUTPUT
if [ "$STALE" == "true" ]; then
exit 1
@@ -109,7 +109,7 @@ jobs:
*)
MODE="elf";;
esac
- echo ::set-output name=TOOLCHAIN_NAME::riscv$BITS-$MODE-${{ matrix.os }}-${{ matrix.compiler }}-nightly
+ echo "TOOLCHAIN_NAME=riscv$BITS-$MODE-${{ matrix.os }}-${{ matrix.compiler }}-nightly" >> $GITHUB_OUTPUT
- uses: actions/upload-artifact@v2
with:
@@ -185,7 +185,7 @@ jobs:
}'
)
- echo "::set-output name=asset_matrix::${ASSET_MATRIX}"
+ echo "asset_matrix=${ASSET_MATRIX}" >> $GITHUB_OUTPUT
shell: bash