We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68ee5be commit 2cb3cc9Copy full SHA for 2cb3cc9
.github/workflows/build.yml
@@ -25,6 +25,8 @@ jobs:
25
- name: Set compile options (release)
26
if: ${{ github.event_name == 'release' }}
27
run: echo "OPTIONS=-Dno-git-hash=true" >> "$GITHUB_ENV"
28
+ - name: Patch Uri.zig
29
+ run: sed -i "s/or c == '?';/or c == '?' or c == '%';/g" "$(zig env | jq .std_dir -r)/Uri.zig"
30
- name: Compile
31
run: zig build -Dtarget=${{ matrix.cpu }}-${{ matrix.os }} -Doptimize=ReleaseFast ${{ env.OPTIONS }}
32
- name: Set binary suffix (Windows)
0 commit comments