diff options
| author | MatthieuCoder <matthieu@matthieu-dev.xyz> | 2023-01-20 19:54:24 +0400 | 
|---|---|---|
| committer | MatthieuCoder <matthieu@matthieu-dev.xyz> | 2023-01-20 19:54:24 +0400 | 
| commit | 538389dc38f8a98035845d97d8ca9a8b750ae9d9 (patch) | |
| tree | cae1f935ab022290a277a270a51f4b1c059edf8b /.github/workflows/build.yml | |
| parent | 6d269eae96858d83dd63372fd7746568ce492cdc (diff) | |
add docker buildx for cross
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b64e22..8f47a53 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,8 +74,10 @@ jobs:        - uses: ATiltedTree/setup-rust@v1          with:            rust-version: stable -      - uses: docker-practice/actions-setup-docker@master -        timeout-minutes: 12 +      - name: Set up Docker Buildx +        uses: docker/setup-buildx-action@v2 +        with: +          platforms: linux/amd64,linux/arm64        - uses: actions/cache@v3          with:            path: |  | 
