From c07234bab84ec010519e413bb3d1451d125a64ab Mon Sep 17 00:00:00 2001 From: mradigen Date: Sat, 11 Jan 2025 16:27:57 +0000 Subject: [PATCH] Update branches and try to fix up the workflow --- .github/workflows/release.yml | 36 ++++++----------------------------- 1 file changed, 6 insertions(+), 30 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 76c32451..7a36a515 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,51 +20,28 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - - name: Set up Docker image - env: - IMAGE_NAME: archlinux_sunnyos - run: | - # Check if the Docker image exists; build if not - if [ -z "$(docker images -q $IMAGE_NAME)" ]; then - echo "Building Docker image: $IMAGE_NAME" - docker build -t $IMAGE_NAME - <