We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 842305a commit e37df50Copy full SHA for e37df50
.github/workflows/rust-build.yml
@@ -43,14 +43,17 @@ on:
43
CARGO_REGISTRY_TOKEN:
44
required: false
45
46
+defaults:
47
+ run:
48
+ working-directory: ${{ inputs.working-directory }}
49
+
50
env:
51
CARGO_TERM_COLOR: always
52
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
53
54
jobs:
55
build:
56
runs-on: ubuntu-latest
- working-directory: ${{ inputs.working-directory }}
57
steps:
58
- name: Checkout repository
59
uses: actions/checkout@v4
@@ -105,7 +108,6 @@ jobs:
105
108
needs: build
106
109
if: ${{ inputs.publish-crates-io && needs.build.result == 'success' }}
107
110
111
112
113
0 commit comments