From dd1ccd0d0b8c289daba3fc7448d7254515116e2c Mon Sep 17 00:00:00 2001 From: lotyp Date: Mon, 26 Aug 2024 14:13:24 +0300 Subject: [PATCH] fix: checkout repository to access build script --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e189f62..278e092 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -175,8 +175,14 @@ jobs: platforms: linux/amd64,linux/arm64 buildkitd-flags: "--debug" + - name: 📦 Check out the codebase + uses: actions/checkout@v4.1.7 + - name: 🚀 Create manifest list and push shell: bash run: .github/scripts/build-images.sh + env: + DOCKER_NAMESPACE: ${{ secrets.DOCKER_NAMESPACE }} + GHCR_NAMESPACE: ${{ secrets.GHCR_NAMESPACE }} ...