From ab57a763ed0facd1b17e02997b99b805e194b272 Mon Sep 17 00:00:00 2001 From: scott Date: Thu, 28 Aug 2025 18:41:06 -0400 Subject: [PATCH] Delete gitea/workflows/radarr-publish.yaml --- gitea/workflows/radarr-publish.yaml | 58 ----------------------------- 1 file changed, 58 deletions(-) delete mode 100644 gitea/workflows/radarr-publish.yaml diff --git a/gitea/workflows/radarr-publish.yaml b/gitea/workflows/radarr-publish.yaml deleted file mode 100644 index 6b44b6f..0000000 --- a/gitea/workflows/radarr-publish.yaml +++ /dev/null @@ -1,58 +0,0 @@ -name: Docker Build and Publish - -on: - schedule: - - cron: '30 6 * * SUN' - push: - branches: [ "main" ] - paths-ignore: - - '**/README.md' - pull_request: - branches: [ "main" ] - paths-ignore: - - '**/README.md' - workflow_dispatch: - -jobs: - ## define job to build and publish docker image - build-and-push-docker-image: - name: Build Docker image amd publish to Gitea - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - ## This is used to complete the identity challenge - ## with sigstore/fulcio when running outside of PRs. - id-token: write - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - ## https://github.com/docker/build-push-action - - name: Setup Docker buildx - uses: docker/setup-buildx-action@v3 - - ## https://github.com/docker/login-action - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: git.sdgarren.com - username: ${{ secrets.REGISTRY_USERNAME }} - password: ${{ secrets.REGISTRY_TOKEN }} - - - ## https://github.com/docker/build-push-action - - name: Build and push Docker image - id: build-and-push - uses: docker/build-push-action@v5 - with: - provenance: false - context: . - platforms: linux/amd64 - push: true - tags: | - git.sdgarren.com/scott/radarr:latest - - - name: Image digest - run: echo ${{ steps.build-and-push.outputs.digest }} \ No newline at end of file