chore: update workflow 100d7c7f
Steve · 2026-04-03 00:11 3 file(s) · +3 −3
.github/workflows/release.yml +0 −2
218 218
      - build-global-artifacts
219 219
    # Only run if we're "publishing", and only if plan, local and global didn't fail (skipped is fine)
220 220
    if: ${{ always() && needs.plan.result == 'success' && needs.plan.outputs.publishing == 'true' && (needs.build-global-artifacts.result == 'skipped' || needs.build-global-artifacts.result == 'success') && (needs.build-local-artifacts.result == 'skipped' || needs.build-local-artifacts.result == 'success') }}
221 -
    permissions:
222 -
      contents: write
223 221
    env:
224 222
      GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
225 223
    runs-on: "ubuntu-22.04"
Cargo.lock +1 −1
2731 2731
2732 2732
[[package]]
2733 2733
name = "parcels"
2734 -
version = "0.1.2"
2734 +
version = "0.1.3"
2735 2735
dependencies = [
2736 2736
 "andromeda-auth",
2737 2737
 "anyhow",
dist-workspace.toml +2 −0
26 26
publish-jobs = ["homebrew"]
27 27
# Whether to install an updater program
28 28
install-updater = false
29 +
# Which actions to run on pull requests
30 +
pr-run-mode = "skip"