Skip to content

Commit d1885e3

Browse files
committed
Update publish workflows to reflect updated repo structure
1 parent ac67e6e commit d1885e3

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@ jobs:
2323
- name: Cargo Publish (Dry Run)
2424
if: ${{ inputs.dry-run == true || inputs.dry-run == 'true' }}
2525
run: cargo publish --dry-run --token ${CRATES_TOKEN} -p antithesis_sdk
26+
working-directory: ./lib
2627
env:
2728
CRATES_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
2829

2930
- name: Cargo Publish
3031
if: ${{ inputs.dry-run != true && inputs.dry-run != 'true' }}
3132
run: cargo publish --token ${CRATES_TOKEN} -p antithesis_sdk
33+
working-directory: ./lib
3234
env:
3335
CRATES_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 commit comments

Comments
 (0)