From 91653d13c6ee167a7875fafe1a56e10c7cf2d87c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Walther?= Date: Wed, 16 Nov 2022 14:03:11 +0100 Subject: [PATCH] Added echo --- .github/workflows/audit.yml | 5 ++++- .github/workflows/nightly_build_release.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index b725dce6c3..9b320f4d0a 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -16,7 +16,10 @@ jobs: - name: Install cargo deny run: cargo install --locked cargo-deny - name: Run cargo deny - run: find . -name Cargo.toml -exec cargo deny --manifest-path {} check advisories -A advisory-not-detected --hide-inclusion-graph \; | uniq &> .github/workflows/support-files/notifications/deny.message + run: | + find . -name Cargo.toml -exec cargo deny --manifest-path {} check \ + advisories -A advisory-not-detected --hide-inclusion-graph \; | \ + uniq &> .github/workflows/support-files/notifications/deny.message - uses: actions/upload-artifact@v3 with: name: report diff --git a/.github/workflows/nightly_build_release.yml b/.github/workflows/nightly_build_release.yml index dbb300334e..1123eeb357 100644 --- a/.github/workflows/nightly_build_release.yml +++ b/.github/workflows/nightly_build_release.yml @@ -23,7 +23,7 @@ jobs: - name: Check out repository code uses: actions/checkout@v2 - - name: Set environnemnt variable to latest release branch + - name: Set environment variable to latest release branch id: step2 run: echo "latest_release=$(git branch -r | grep -E 'release/v[0-9]+\.[0-9]+\.[0-9]+' | tail -n 1)" >> $GITHUB_OUTPUT build: @@ -42,6 +42,9 @@ jobs: with: ref: ${{ needs.get_release.outputs.output1 }} + - name: Print output content + run: echo ${{ needs.get_release.outputs.output1 }} + - name: Install rust toolchain uses: actions-rs/toolchain@v1 with: