Skip to content

Commit

Permalink
feat(workflow): add Docker setup step and extend action container space
Browse files Browse the repository at this point in the history
  • Loading branch information
merrcury committed Nov 4, 2024
1 parent b85e056 commit 36b00e5
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/prepare-self-hosted-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,18 @@ jobs:

- name: Install dependencies
run: pnpm install --frozen-lockfile


- name: Setup Docker
uses: crazy-max/ghaction-setup-docker@v2
with:
version: v24.0.6
daemon-config: |
{
"features": {
"containerd-snapshotter": true
}
}
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
with:
Expand All @@ -60,6 +71,9 @@ jobs:
uses: docker/setup-buildx-action@v3
with:
driver-opts: 'image=moby/buildkit:v0.13.1'

- uses: ./.github/actions/free-space
name: Extend space in Action Container

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
Expand Down

0 comments on commit 36b00e5

Please sign in to comment.