Try deploy
This commit is contained in:
parent
5782cb64d8
commit
da7aa10627
4 changed files with 97 additions and 1 deletions
40
.gitea/workflows/deploy.yml
Normal file
40
.gitea/workflows/deploy.yml
Normal file
|
@ -0,0 +1,40 @@
|
|||
name: deploy
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install docker
|
||||
run: apt update && apt install -y docker.io
|
||||
|
||||
- name: Checkout
|
||||
uses: https://github.com/actions/checkout@v3
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: https://github.com/docker/setup-qemu-action@v3
|
||||
with:
|
||||
platforms: amd64
|
||||
|
||||
- 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.USERNAME }}
|
||||
password: ${{ secrets.PASSWORD }}
|
||||
|
||||
- name: Build and push
|
||||
uses: https://github.com/docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
build-args:
|
||||
NGINX_VERSION: 1.27.2
|
||||
file: ./docker/Dockerfile
|
||||
push: false
|
||||
tags: gitea.mrdev023.fr/florian.richer/portfolio:latest
|
Loading…
Add table
Add a link
Reference in a new issue