Files
next-portfolio/.gitea/workflows/deploy.yaml
Joe Monk bea9ceb043
Some checks failed
Build and deploy / deploy (push) Failing after 28s
Use a different setup for url
2024-10-12 01:00:44 +01:00

30 lines
771 B
YAML

name: Build and deploy
run-name: Build and deploy
on:
push:
# branches:
# - main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to private registry
uses: docker/login-action@v3
with:
registry: '${{ variables.SERVER_URL }}/${{ gitea.repository }}'
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
-
name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: '${{ variables.SERVER_URL }}/${{ gitea.repository }}:latest'