From fb277880130c7ce1396e9743a8b3b41fd3fa6ca3 Mon Sep 17 00:00:00 2001 From: Mindfang Date: Mon, 22 Jan 2024 13:01:12 -0600 Subject: [PATCH] Update to use buildx --- .gitea/workflows/commit.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/commit.yaml b/.gitea/workflows/commit.yaml index f20fcc7..9e7ecf5 100644 --- a/.gitea/workflows/commit.yaml +++ b/.gitea/workflows/commit.yaml @@ -5,6 +5,8 @@ on: push: branches: - "main" + # schedule: + # - cron: "37 18 * * *" env: REGISTRY: gitea.taco.quest @@ -19,11 +21,14 @@ jobs: packages: write steps: + # - name: Prepare the container + # run: curl -fsSL https://get.docker.com -o get-docker.sh && sh ./get-docker.sh + - name: Checkout repository uses: actions/checkout@v4 - - name: Prepare the container - run: curl -fsSL https://get.docker.com -o get-docker.sh && sh ./get-docker.sh + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Log in to registry uses: docker/login-action@v3