Skip to content

Commit

Permalink
Fix cargo command arg (#985)
Browse files Browse the repository at this point in the history
Co-authored-by: Florian Franzen <[email protected]>
  • Loading branch information
penumbra23 and FlorianFranzen authored Jul 3, 2024
1 parent 0212301 commit cc0e6d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/cargo-command/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ runs:
env:
CARGO_TERM_COLOR: always
shell: bash
run: cargo ${{ inputs.command }} ${{ inputs.package != '' && '--package' || '' }} ${{ inputs.package }} --profile '${{ inputs.profile }}' --features '${{ inputs.features }}' ${{ inputs.args }} --message-format json | cargo-action-fmt
run: cargo ${{ inputs.command }} ${{ inputs.package != '' && '--package' || '' }} ${{ inputs.package }} --profile '${{ inputs.profile }}' --features '${{ inputs.features }}' --message-format json ${{ inputs.args }} | cargo-action-fmt
8 changes: 4 additions & 4 deletions .github/workflows/merge-pages-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ jobs:
env:
DOCS_HIDEOUT: an8ohgahmoot6ro8ieReib9micau0Oow
run: |
mkdir target/docs
cp -r target/doc target/docs/$DOCS_HIDEOUT
cp docs/robots.txt target/docs/$DOCS_HIDEOUT
mkdir dist
cp -r target/doc dist/$DOCS_HIDEOUT
cp docs/robots.txt dist/$DOCS_HIDEOUT
- name: Upload docs
uses: actions/upload-pages-artifact@v3
with:
path: target/docs
path: dist
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4

0 comments on commit cc0e6d5

Please sign in to comment.