24 lines
614 B
YAML
Raw Normal View History

name: Gitea Actions CI
on:
push:
branches: [master]
jobs:
tests:
name: Build and deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: log into ghcr.io
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
with:
registry: git.xeserv.us
username: mimi
password: ${{ secrets.PUSH_TOKEN }}
- name: build image
run: |
docker build -t git.xeserv.us/tulpamancy/tulpanomicon .
- name: push image
run: |
docker push git.xeserv.us/tulpamancy/tulpanomicon