Added echo
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user