dirsql 0.0.19__tar.gz → 0.0.20__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/publish.yml +7 -1
- {dirsql-0.0.19 → dirsql-0.0.20}/.gitignore +3 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/PKG-INFO +1 -1
- {dirsql-0.0.19 → dirsql-0.0.20}/pyproject.toml +1 -1
- {dirsql-0.0.19 → dirsql-0.0.20}/.claude/CLAUDE.md +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/minor-release.yml +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/patch-release.yml +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/pr-monitor.yml +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/python-lint.yml +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/python-test.yml +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/rust-test.yml +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/.npmignore +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/Cargo.lock +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/Cargo.toml +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/LICENSE +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/README.md +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/SUMMARY.md +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/python/dirsql/__init__.py +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/python/dirsql/_async.py +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/src/db.rs +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/src/differ.rs +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/src/lib.rs +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/src/matcher.rs +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/src/scanner.rs +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/src/watcher.rs +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/tests/__init__.py +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/tests/conftest.py +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/tests/integration/__init__.py +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/tests/integration/test_async_dirsql.py +0 -0
- {dirsql-0.0.19 → dirsql-0.0.20}/tests/integration/test_dirsql.py +0 -0
|
@@ -223,6 +223,8 @@ jobs:
|
|
|
223
223
|
needs: tag
|
|
224
224
|
if: needs.tag.outputs.created == 'true' && inputs.publish_crates
|
|
225
225
|
runs-on: ubuntu-latest
|
|
226
|
+
permissions:
|
|
227
|
+
id-token: write
|
|
226
228
|
steps:
|
|
227
229
|
- uses: actions/checkout@v6
|
|
228
230
|
with:
|
|
@@ -235,9 +237,13 @@ jobs:
|
|
|
235
237
|
run: |
|
|
236
238
|
sed -i 's/^version = ".*"/version = "${{ needs.tag.outputs.new_version }}"/' Cargo.toml
|
|
237
239
|
|
|
240
|
+
- name: Get crates.io token
|
|
241
|
+
uses: rust-lang/crates-io-auth-action@v1
|
|
242
|
+
id: auth
|
|
243
|
+
|
|
238
244
|
- name: Publish to crates.io
|
|
239
245
|
env:
|
|
240
|
-
CARGO_REGISTRY_TOKEN: ${{
|
|
246
|
+
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
|
|
241
247
|
run: |
|
|
242
248
|
for attempt in 1 2 3; do
|
|
243
249
|
echo "Attempt $attempt of 3"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|