Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ concurrency:
jobs:
seed-build-script:
name: Pre-seed static binaries' versions
uses: ./.github/workflows/pre-seed-versions.yml
uses: $/.github/workflows/pre-seed-versions.yml

build-bin:
needs: [seed-build-script]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/binary-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ concurrency:
jobs:
seed-build-script:
name: Pre-seed static binaries' versions
uses: ./.github/workflows/pre-seed-versions.yml
uses: $/.github/workflows/pre-seed-versions.yml

create-assets:
needs: [seed-build-script]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

seed-build-script:
name: Pre-seed static binaries' versions
uses: ./.github/workflows/pre-seed-versions.yml
uses: $/.github/workflows/pre-seed-versions.yml

build-mkdocs:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bump-n-release.nu
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,10 @@ export def gen-changes [
{out_path: ($out_path | path relative-to (pwd)), log_prefix: 'Updated'}
}
if (($paths | get 'include' | length) > 0) {
$args = $args | append ['--include-path', ...($paths | get 'include')]
$args = $args | append ['--include-path', ($paths | get 'include' | str join " ")]
}
if (($paths | get 'exclude' | length) > 0) {
$args = $args | append ['--exclude-path', ...($paths | get 'exclude')]
$args = $args | append ['--exclude-path', ($paths | get 'exclude' | str join " ")]
}
run-cmd 'git-cliff' ...$args
print ($prompt | format pattern '{log_prefix} {out_path}')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node-js-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ concurrency:
jobs:
seed-build-script:
name: Pre-seed static binaries' versions
uses: ./.github/workflows/pre-seed-versions.yml
uses: $/.github/workflows/pre-seed-versions.yml

build:
needs: [seed-build-script]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ concurrency:
jobs:
seed-build-script:
name: Pre-seed static binaries' versions
uses: ./.github/workflows/pre-seed-versions.yml
uses: $/.github/workflows/pre-seed-versions.yml

linux:
needs: [seed-build-script]
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
args: >-
--release --out dist --find-interpreter --zig
# avoid cache-poisoning potential for actually distributed builds
sccache: ${{ startsWith(github.ref, 'refs/tags') && 'false' || 'true' }}
sccache: ${{ startsWith(github.ref, 'refs/tags') && 'false' || 'true' }} # zizmor: ignore[cache-poisoning]
manylinux: 'auto'
- name: Upload wheels
uses: actions/upload-artifact@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-dev-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ concurrency:
jobs:
seed-build-script:
name: Pre-seed static binaries' versions
uses: ./.github/workflows/pre-seed-versions.yml
uses: $/.github/workflows/pre-seed-versions.yml

test:
needs: [seed-build-script]
Expand Down
Loading
Loading