From b09318f1dbc3529aee5e6f11772ad228bed1b9f8 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Sun, 15 Dec 2024 15:03:16 -0300 Subject: [PATCH] Remove unused GitHub workflows for mirroring and Docker image building --- .github/workflows/mirror.yml | 17 ----------------- .github/workflows/publish.yml | 25 ------------------------- 2 files changed, 42 deletions(-) delete mode 100644 .github/workflows/mirror.yml delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml deleted file mode 100644 index fb5f770..0000000 --- a/.github/workflows/mirror.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Mirroring - -on: [push, delete] - -jobs: - to_gitlab: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - uses: pixta-dev/repository-mirroring-action@v1 - with: - target_repo_url: - git@gitlab.com:rogs/bitwarden-to-keepass.git - ssh_private_key: - ${{ secrets.GITLAB_SSH_PRIVATE_KEY }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index c9ee40f..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Build and Push Docker Image - -on: - push: - branches: - - master - -jobs: - build-and-push: - runs-on: ubuntu-latest - steps: - - name: Check out the repository - uses: actions/checkout@v4 - - - name: Log in to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - - name: Build and push Docker image - uses: docker/build-push-action@v5 - with: - push: true - tags: rogsme/bitwarden-to-keepass:latest