Skip to content

Commit

Permalink
Fix release pipeline for standard builds
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitris Karakasilis <[email protected]>
  • Loading branch information
jimmykarily committed Nov 3, 2023
1 parent 5ec8461 commit 312fb6a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,15 @@ jobs:
run: echo ${{ secrets.QUAY_PASSWORD }} | docker login -u ${{ secrets.QUAY_USERNAME }} --password-stdin quay.io
- name: Build 🔧
run: |
earthly +all -VARIANT=standard -K3S_VERSION=${{ matrix.k3s_version }} -FLAVOR=${{ matrix.flavor }}
earthly +all \
--VARIANT=${{ matrix.variant }} \
--FAMILY=${{ matrix.family }} \
--FLAVOR=${{ matrix.flavor }} \
--FLAVOR_RELEASE=${{ matrix.flavorRelease }} \
--MODEL=${{ matrix.model }} \
--K3S_VERSION=${{ matrix.k3s_version }}
--BASE_IMAGE=${{ matrix.baseImage }}
sudo mv build release
- name: Push to quay
if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit 312fb6a

Please sign in to comment.