From 6e6480823739b9e88cd15c4fd4b275fef286b319 Mon Sep 17 00:00:00 2001 From: Erki Date: Wed, 18 Sep 2024 13:15:59 +0300 Subject: [PATCH] Fix build order and specify external dependency --- .gitea/workflows/ci.yml | 4 ++-- fedora-act.Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 1b58c9e..8b9ece2 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: publish: strategy: matrix: - image: ["fedora-act", "fedora-cpp", "ubuntu-cpp"] + image: ["fedora-cpp", "ubuntu-cpp", "fedora-act"] runs-on: ubuntu-latest if: gitea.ref == 'refs/heads/master' steps: @@ -25,6 +25,6 @@ jobs: - name: Build and push uses: docker/build-push-action@v6 with: - push: false + push: true tags: "erki/${{ matrix.image }}:latest" file: ${{ matrix.image }}.Dockerfile diff --git a/fedora-act.Dockerfile b/fedora-act.Dockerfile index 8a46040..b2510e8 100644 --- a/fedora-act.Dockerfile +++ b/fedora-act.Dockerfile @@ -1,4 +1,4 @@ -FROM skullnet/fedora-cpp:latest +FROM git.skullnet.me/erki/skullnet/fedora-cpp:latest RUN curl -s https://raw.githubusercontent.com/nektos/act/master/install.sh | bash