Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
csandanov committed Jan 28, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent d140d34 commit 8116817
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -18,6 +18,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Docker
uses: docker/setup-docker-action@v4
with:
daemon-config: |
{
"debug": true,
"features": {
"containerd-snapshotter": true
}
}
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
@@ -35,6 +45,16 @@ jobs:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
- name: Set up Docker
uses: docker/setup-docker-action@v4
with:
daemon-config: |
{
"debug": true,
"features": {
"containerd-snapshotter": true
}
}
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
@@ -47,7 +67,7 @@ jobs:
PLATFORM: linux/arm64
run: |
make buildx-build
make buildx-push
make buildx-push
valkey80:
runs-on: ubuntu-latest
needs:

0 comments on commit 8116817

Please sign in to comment.