Files
ry.kazcloud.dev/.gitea/workflows/deploy.yml
Ryan Kazokas e53c94fd52
Some checks failed
Build and Push / build (push) Failing after 9s
Adding actions
2026-02-15 19:21:43 -05:00

26 lines
593 B
YAML

name: Build and Push
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Log in to Gitea Container Registry
uses: docker/login-action@v3
with:
registry: gitea.kazcloud.dev
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: gitea.kazcloud.dev/ryan/${{ gitea.repository_name }}:latest