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 75fd6ef commit 442f96e
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions .github/workflows/build-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
fail-fast: false
matrix:
os_name: ["alpine"]
php_version: ["8.1", "8.2"]
php_type: ["fpm"]
builder: [{arch: "amd64", os: "ubuntu-latest"}]
php_version: ["8.1", "8.2", "8.2"]
php_type: ["fpm", "cli", "supervisord"]
builder: [{arch: "amd64", os: "ubuntu-latest"}, {arch: "arm64", os: "ubuntu-latest"}]
runs-on: ${{ matrix.builder.os }}
steps:

Expand Down Expand Up @@ -144,11 +144,19 @@ jobs:
- name: 📤 Upload digest
uses: actions/upload-artifact@v4
with:
name: digests
name: digests-${{ github.run_id }}
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1

# - name: 📤 Upload digest
# uses: actions/upload-artifact@v4
# with:
# name: digests
# path: /tmp/digests/*
# if-no-files-found: error
# retention-days: 1

merge:
needs: build
runs-on: ubuntu-latest
Expand All @@ -162,9 +170,15 @@ jobs:
- name: 📥 Download digests
uses: actions/download-artifact@v4
with:
name: digests
name: digests-${{ github.run_id }}
path: /tmp/digests

# - name: 📥 Download digests
# uses: actions/download-artifact@v4
# with:
# name: digests
# path: /tmp/digests

- name: 🔑 Login to docker-hub
uses: docker/login-action@v3
with:
Expand Down

0 comments on commit 442f96e

Please sign in to comment.