Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SRetip committed Jun 3, 2024
1 parent c30cbfc commit 7941880
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/standard_rust_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs :
id: rootpath
run: echo "::set-output name=path::$(dirname ${{ inputs.manifest_path }})"
- name: Build module
run: cd ${{ steps.rootpath.outputs.path }} && cargo build
run: cd ${{ steps.rootpath.outputs.path }} && cargo build && cd -
- name: Audit the modules
run: make audit
continue-on-error: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs :
id: rootpath
run: echo "::set-output name=path::$(dirname ${{ inputs.manifest_path }})"
- name: Build module
run: cd ${{ steps.rootpath.outputs.path }} && cargo build
run: cd ${{ steps.rootpath.outputs.path }} && cargo build && cd -
- name: Audit the modules
run: make audit
continue-on-error: true
Expand Down

0 comments on commit 7941880

Please sign in to comment.