Skip to content

Commit

Permalink
Build image on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hexium310 committed Nov 21, 2024
1 parent 10227ea commit f194beb
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- --features=server
- --features=cli,server
name: Test
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -42,3 +42,20 @@ jobs:
reporter: github-check
github_token: ${{ secrets.GITHUB_TOKEN }}
clippy_flags: --no-default-features --features=vendored ${{ matrix.features }}

build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build image
uses: docker/bake-action@v5
with:
set: |
*.cache-from=type=gha
*.cache-to=type=gha,mode=max

0 comments on commit f194beb

Please sign in to comment.