--- name: Image builds on: schedule: - cron: "21 2 * * *" push: branches: - main paths: - ".forgejo/workflows/argo_cd.yaml" - "argocd/**" jobs: build-argo-cd-image: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 - name: Login to Docker Hub uses: docker/login-action@v3 with: registry: code.icb4dc0.de username: prskr password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }} - name: Check latest ArgoCD tag run: | echo "ARGOCD_VERSION=$(gh release list -R argoproj/argo-cd --exclude-pre-releases --exclude-drafts --json 'tagName' --jq '.[].tagName' --limit 10 | sort -t. -k 1,1nr -k 2,2nr -k 3,3nr -k 4,4nr | head -n 1)" >> "$GITHUB_ENV" env: GH_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v6 with: context: "./argocd" push: true tags: code.icb4dc0.de/infrastructure/images/argocd:${{ env.ARGOCD_VERSION }} build-args: | BASE_IMAGE=quay.io/argoproj/argocd:${{ env.ARGOCD_VERSION }}