Added echo

This commit is contained in:
Raphaël Walther
2022-11-16 14:03:11 +01:00
parent b6a765481a
commit 91653d13c6
2 changed files with 8 additions and 2 deletions
+4 -1
View File
@@ -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
+4 -1
View File
@@ -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: