Remove unused GitHub workflows for mirroring and Docker image building

This commit is contained in:
Roger Gonzalez 2024-12-15 15:03:16 -03:00
parent 855fbb3cdc
commit b09318f1db
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6
2 changed files with 0 additions and 42 deletions

View File

@ -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 }}

View File

@ -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