Skip to content
This repository was archived by the owner on Aug 4, 2025. It is now read-only.
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
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
matrix:
include:
- version: '0.10.0'
- version: '0.11.0'
fail-fast: false
steps:
- name: Set environment variables
Expand All @@ -52,7 +52,9 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build packages
uses: docker/bake-action@v4
uses: docker/bake-action@v6
with:
source: .
- name: Create GitHub release
if: github.event_name == 'push'
env:
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
npx lint-staged
npx lint-staged
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ FROM alpine AS archives

# Install packages
RUN apk add --no-cache \
bash \
findutils \
tar \
unzip \
xz
bash \
findutils \
tar \
unzip \
xz

ARG VERSION

Expand Down
Loading