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
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ jobs:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
with:
version: 0.13.0
version: 0.14.0
- run: zig build test --summary all
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM alpine:3.10 AS builder
RUN apk update
RUN apk add curl

ARG ZIGVER=0.13.0
ARG ZIGVER=0.14.0

COPY --from=minisign /usr/local/bin/minisign /usr/local/bin/minisign
RUN curl https://ziglang.org/download/$ZIGVER/zig-linux-x86_64-$ZIGVER.tar.xz.minisig -O
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ zig build test --summary all

### Docker
```sh
docker build -t zig0.13.0 .
docker build -t zig0.14.0 .
```

```sh
docker run --name zigist zig0.13.0 $GH_TOKEN $GIST_ID
docker run --name zigist zig0.14.0 $GH_TOKEN $GIST_ID
```

[^1]: Place repository secret: ![Screenshot 2024-03-17 at 23 54 25](https://github.com/42LM/zigist/assets/93522910/667ad7a8-bc4e-4115-85bf-61945095f1dc)
Expand Down