From 358bbe8a8f391405aeafe172c690a15f63f78446 Mon Sep 17 00:00:00 2001 From: Aditya Prima Date: Sun, 24 Mar 2024 00:17:00 +0700 Subject: [PATCH] Fixed wrong runner on alpine --- .gitea/workflows/alpine.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/alpine.yaml b/.gitea/workflows/alpine.yaml index 3e04d93..e77ba70 100644 --- a/.gitea/workflows/alpine.yaml +++ b/.gitea/workflows/alpine.yaml @@ -7,9 +7,9 @@ on: jobs: build: name: Build and push image - runs-on: alpine-latest + runs-on: ubuntu-latest container: - image: ghcr.io/catthehacker/alpine:act-latest + image: ghcr.io/catthehacker/ubuntu:act-latest steps: - name: Check out repository code uses: actions/checkout@v3