scoresaber-reloadedv3/.gitea/workflows/deploy.yml
Liam 60ed8181c8
Some checks failed
Deploy / deploy (push) Failing after 41s
add missing commit hash
2024-09-24 10:00:29 +01:00

43 lines
1.0 KiB
YAML

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
build-args: |
GIT_REV=${{ gitea.sha }}
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: fascinated/scoresaber-reloaded:latest
- name: Set up Kubectl
uses: azure/k8s-set-context@v1
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