2024-04-11 22:49:32 +00:00
|
|
|
#
|
|
|
|
# .gitea/gitea-ci.yaml
|
|
|
|
#
|
|
|
|
|
2024-04-11 22:50:05 +00:00
|
|
|
name: Build
|
2024-04-11 22:49:32 +00:00
|
|
|
run-name: ${{ gitea.actor }} is runs ci pipeline
|
|
|
|
on: [ push ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: build
|
2024-04-11 23:10:19 +00:00
|
|
|
if: gitea.ref == 'refs/heads/build' #XXX
|
2024-04-11 22:49:32 +00:00
|
|
|
steps:
|
|
|
|
- uses: https://github.com/actions/checkout@v4
|
|
|
|
- name: Set up Docker Buildx
|
2024-04-11 23:22:54 +00:00
|
|
|
#uses: https://github.com/docker/setup-buildx-action@v3
|
2024-04-11 23:28:42 +00:00
|
|
|
uses: https://github.com/Frankkkkk/setup-buildx-action@master
|
2024-04-11 22:49:32 +00:00
|
|
|
with:
|
|
|
|
config-inline: |
|
|
|
|
[registry."<my-private-unsecure-git-repository-ip-address>:5000"]
|
|
|
|
http = true
|
|
|
|
insecure = true
|
|
|
|
- name: Build and push Docker image
|
|
|
|
uses: https://github.com/docker/build-push-action@v5
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
push: true
|
|
|
|
tags: "<my-private-unsecure-git-repository-ip-address>:5000/<my-docker-image>:${{gitea.sha}},<my-private-unsecure-git-repository-ip-address>:5000/<my-docker-image>:latest"
|