cdn/.gitea/workflows/build.yaml

19 lines
479 B
YAML
Raw Normal View History

2025-01-16 16:46:20 +01:00
name: build
on: push
jobs:
build:
runs-on: remote
steps:
2025-01-21 19:35:51 +01:00
- uses: https://git.simonis.lol/actions/checkout@v4
- uses: https://git.simonis.lol/actions/login@v1
2025-01-16 16:46:20 +01:00
with:
registry: git.simonis.lol
username: ${{ vars.DOCKER_USER }}
password: ${{ vars.DOCKER_PW }}
- name: build
run: docker build -t git.simonis.lol/sites/cdn:latest .
- name: push
2025-01-21 19:35:51 +01:00
run: docker push git.simonis.lol/sites/cdn:latest