Skip to content

Commit

Permalink
Maybe fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Jan 6, 2025
1 parent bc93504 commit 0b8b829
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const ci = {
name: "${{ matrix.config.target }}",
"runs-on": "${{ matrix.config.os }}",
if:
`matrix.config.os != '${Runner.LinuxArm} || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')`,
`matrix.config.os != '${Runner.LinuxArm}' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')`,
strategy: {
matrix: {
config: profiles.map((profile) => ({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
build:
name: "${{ matrix.config.target }}"
runs-on: "${{ matrix.config.os }}"
if: "matrix.config.os != 'buildjet-2vcpu-ubuntu-2204-arm || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')"
if: "matrix.config.os != 'buildjet-2vcpu-ubuntu-2204-arm' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')"
strategy:
matrix:
config:
Expand Down

0 comments on commit 0b8b829

Please sign in to comment.