This commit is contained in:
JMARyA 2024-04-12 08:28:04 +02:00
parent 43452c7c14
commit d89760702a
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
3 changed files with 27 additions and 2 deletions

View file

@ -0,0 +1,25 @@
name: build
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Docker
run: curl -fsSL https://get.docker.com | sh
- name: Log in to Docker registry
run: echo "${{ secrets.registry_password }}" | docker login -u "jmarya" --password-stdin git.hydrar.de
- name: Build and push Docker image
run: |
docker build -t git.hydrar.de/jmarya/mirrord:latest .
docker push git.hydrar.de/jmarya/mirrord:latest