Skip to content

Commit

Permalink
chore: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed Apr 2, 2024
1 parent 310f223 commit eea1f25
Showing 1 changed file with 19 additions and 12 deletions.
31 changes: 19 additions & 12 deletions .github/workflows/build-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,18 @@ jobs:
- name: 🤖 Generate dist files
run: ansible-playbook src/playbook.yml -l ${{ matrix.php_version }}-${{ matrix.php_type }}-${{ matrix.os_name }}

- name: 💻 Set up Docker for MacOS
if: ${{ matrix.builder.os == 'macos-latest' }}
uses: docker-practice/actions-setup-docker@master

- name: 🛠️ Setup docker QEMU
uses: docker/setup-qemu-action@v3

- name: 🛠️ Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-flags: "--debug"

- name: 🐳 Extract docker meta data
id: meta
uses: docker/metadata-action@v5
Expand Down Expand Up @@ -72,18 +84,6 @@ jobs:
if-no-files-found: error
retention-days: 1

- name: 💻 Set up Docker for MacOS
if: ${{ matrix.builder.os == 'macos-latest' }}
uses: docker-practice/actions-setup-docker@master

- name: 🛠️ Setup docker QEMU
uses: docker/setup-qemu-action@v3

- name: 🛠️ Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-flags: "--debug"

- name: 🔑 Login to docker-hub
uses: docker/login-action@v3
with:
Expand Down Expand Up @@ -162,8 +162,15 @@ jobs:
- name: 📥 Download meta bake definitions
uses: actions/download-artifact@v4
with:
name: bake-meta-*
path: /tmp

- name: 📥 Download meta bake definitions
uses: actions/download-artifact@v4
with:
name: digests-*
path: /tmp/digests/*

- name: Print all download artifact files
run: |
ls -la /tmp
Expand Down

0 comments on commit eea1f25

Please sign in to comment.