portfolio_leptos/.gitea/workflows/deploy.yml
Florian RICHER 1890b12806
Some checks failed
deploy / docker (push) Failing after 1m13s
Try
2023-11-21 19:54:47 +01:00

32 lines
No EOL
816 B
YAML

name: deploy
on:
push:
branches: [ main ]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: https://github.com/actions/checkout@v3
- name: Set up QEMU
uses: https://github.com/docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: https://github.com/docker/login-action@v3
with:
registry: gitea.mrdev023.fr
username: ${{ secrets.GITEA_USERNAME }}
password: ${{ secrets.GITEA_PASSWORD }}
- name: Build and push
uses: https://github.com/docker/build-push-action@v5
with:
context: .
push: true
tags: gitea.mrdev023.fr/mrdev023/portfolio:latest