Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 7 additions & 15 deletions .github/workflows/deploy-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,22 +55,14 @@ jobs:
with:
ref: ${{ inputs.branch }}

- name: Install nix
uses: DeterminateSystems/nix-installer-action@786fff0690178f1234e4e1fe9b536e94f5433196 # ratchet:DeterminateSystems/nix-installer-action@v20
- name: Setup Nix
uses: ./.github/actions/setup-nix
with:
extra-conf: "system-features = nixos-test benchmark big-parallel kvm"
# - name: Install Nix
# uses: nixbuild/nix-quick-install-action@v33
# with:
# nix_conf: "system-features = nixos-test benchmark big-parallel kvm"
- name: Setup remote cache
# TODO: disable continue-on-error https://www.github.com/cachix/cachix-action/issues/200
uses: cachix/cachix-action@41f25c0d23388f1a854cc67abb62029877468386 # ratchet:cachix/cachix-action@master
continue-on-error: true
with:
name: "${{ vars.CACHIX_CACHE_NAME }}"
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
extraPullNames: nix-community,poetry2nix,celldynamics,pyproject-nix,sciexp
system: x86_64-linux
enable-cachix: true
cachix-name: ${{ vars.CACHIX_CACHE_NAME }}
cachix-auth-token: ${{ secrets.CACHIX_AUTH_TOKEN }}
extra-pull-names: nix-community,poetry2nix,celldynamics,pyproject-nix,sciexp

- name: Setup tmate debug session
uses: mxschmitt/action-tmate@e5c7151931ca95bad1c6f4190c730ecf8c7dde48 # ratchet:mxschmitt/action-tmate@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ jobs:

- name: Publish to PyPI
if: steps.cache.outputs.should-run == 'true' && inputs.build-wheels != 'true' && steps.semantic-release.outputs.new_release_published == 'true' && inputs.release-dry-run != 'true'
continue-on-error: true
working-directory: ${{ inputs.package-path }}
run: nix develop --accept-flake-config -c uv publish
env:
UV_PUBLISH_TOKEN: ${{ secrets.UV_PUBLISH_TOKEN }}
Expand Down
Loading