scoresaber-reloadedv3/.gitea/workflows/deploy.yml

44 lines
1.1 KiB
YAML
Raw Normal View History

2024-09-24 08:57:05 +00:00
name: "Deploy"
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }}
registry: git.fascinated.cc
- name: Build and push
uses: docker/build-push-action@v6
with:
2024-09-24 09:06:32 +00:00
context: .
2024-09-24 08:57:05 +00:00
push: true
2024-09-24 09:21:06 +00:00
tags: git.fascinated.cc/fascinated/scoresaber-reloaded:latest
2024-09-24 09:06:32 +00:00
build-args: |
GIT_REV=${{ gitea.sha }}
2024-09-24 08:57:05 +00:00
- name: Set up Kubectl
2024-09-24 09:23:53 +00:00
uses: azure/k8s-set-context@v4
2024-09-24 08:57:05 +00:00
with:
kubeconfig: ${{ secrets.KUBECONFIG }}
- name: Deploy
run: |
kubectl apply -f ./gitea/kubernetes/deployment.yaml
kubectl apply -f ./gitea/kubernetes/service.yaml
kubectl apply -f ./gitea/kubernetes/ingress.yaml