From 0b3e4fbc58a60e92323675ef3ef74abbfead1bca Mon Sep 17 00:00:00 2001 From: Khaled Ismaeel Date: Fri, 1 Mar 2024 20:23:53 +0100 Subject: [PATCH] fix: add Earthly to release workflow (#1393) Due to #1378 the release workflow fails as Earthly is not installed there, this should fix that. --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7d1727d1c..e9e6e15b6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,6 +7,10 @@ jobs: name: Release kuberpult with semantic versioning runs-on: ubuntu-latest steps: + - name: Install earthly + uses: earthly/actions-setup@v1 + with: + version: v0.8.4 - uses: actions/checkout@v4 with: fetch-depth: 0 # needed for git describe/VERSION in Makefile