From 58e3140376bf29c3a16c4a585e4062eab95e991b Mon Sep 17 00:00:00 2001 From: Philipp Hofer Date: Fri, 21 Feb 2025 10:33:36 +0100 Subject: [PATCH] fetch new ci image --- .gitea/workflows/action.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/action.yml b/.gitea/workflows/action.yml index 3d95e0a..45e8684 100644 --- a/.gitea/workflows/action.yml +++ b/.gitea/workflows/action.yml @@ -11,7 +11,9 @@ env: jobs: test: runs-on: ubuntu-latest - container: git.hofer.link/philipp/ci-images:rust-latest + container: + image: git.hofer.link/philipp/ci-images:rust-latest + force_pull: true steps: - uses: actions/checkout@v3 - name: Run Test DB Script @@ -37,7 +39,9 @@ jobs: deploy-staging: runs-on: ubuntu-latest - container: git.hofer.link/philipp/ci-images:rust-latest + container: + image: git.hofer.link/philipp/ci-images:rust-latest + force_pull: true needs: [test] if: github.ref == 'refs/heads/staging' steps: @@ -80,7 +84,9 @@ jobs: deploy-main: runs-on: ubuntu-latest - container: git.hofer.link/philipp/ci-images:rust-latest + container: + image: git.hofer.link/philipp/ci-images:rust-latest + force_pull: true needs: [test] if: github.ref == 'refs/heads/main' steps: