diff options
| author | 2026-01-18 21:15:17 +0800 | |
|---|---|---|
| committer | 2026-01-18 21:15:17 +0800 | |
| commit | b9de45028667b4b0fc3ae37084e65ecb97ab94ff (patch) | |
| tree | c3c77ce4e6569719e7b8c5c0b84089b2cca5a940 | |
| parent | 6b4b94927a4ed12eec83141ff1bbb516545382c1 (diff) | |
| download | DropOut-b9de45028667b4b0fc3ae37084e65ecb97ab94ff.tar.gz DropOut-b9de45028667b4b0fc3ae37084e65ecb97ab94ff.zip | |
ci(semifold): add test publish code
| -rw-r--r-- | .changes/config.toml | 2 | ||||
| -rw-r--r-- | .github/workflows/semifold-ci.yaml | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/.changes/config.toml b/.changes/config.toml index d8dd8d2..c7766ea 100644 --- a/.changes/config.toml +++ b/.changes/config.toml @@ -18,7 +18,7 @@ version-mode = { pre-release.tag = "alpha" } path = "src-tauri" resolver = "rust" version-mode = { pre-release.tag = "alpha" } -assets = ["artifacts/*"] +assets = ["artifacts/**/*"] [resolver.rust.pre-check] url = "https://crates.io/api/v1/crates/{{ package.name }}/{{ package.version }}" diff --git a/.github/workflows/semifold-ci.yaml b/.github/workflows/semifold-ci.yaml index dccf884..cc3770a 100644 --- a/.github/workflows/semifold-ci.yaml +++ b/.github/workflows/semifold-ci.yaml @@ -176,9 +176,9 @@ jobs: merge-multiple: true - name: List artifacts run: ls -R artifacts/ - # - name: Semifold CI - # run: semifold ci - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} - # NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} + - name: Semifold CI + run: semifold publish --debug --dry-run --allow-dirty + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} |