Compare commits

...

7 commits
main ... build

Author SHA1 Message Date
Frank Villaro-Dixon 1cbc72ea34 test
Some checks failed
/ test (push) Successful in 3s
Build / build (push) Has been cancelled
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-04-13 00:20:11 +02:00
Frank Villaro-Dixon d13a05751f aouau
Some checks failed
Build / build (push) Failing after 20s
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-04-13 00:06:21 +02:00
Frank Villaro-Dixon ed95a7f84a aouauo
Some checks failed
Build / build (push) Failing after 27s
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-04-12 01:28:42 +02:00
Frank Villaro-Dixon 47239f51bc test
Some checks failed
Build / build (push) Failing after 3s
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-04-12 01:22:54 +02:00
Frank Villaro-Dixon 76d29851e7 add ci
Some checks failed
Build / build (push) Failing after 35s
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-04-12 01:10:19 +02:00
Frank Villaro-Dixon 53705cc4f8 add ci
All checks were successful
Build / build (push) Has been skipped
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-04-12 00:50:05 +02:00
Frank Villaro-Dixon c97663d0c3 add ci
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-04-12 00:49:32 +02:00
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,30 @@
#
# .gitea/gitea-ci.yaml
#
name: Build
run-name: ${{ gitea.actor }} is runs ci pipeline
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
needs: build
if: gitea.ref == 'refs/heads/build' #XXX
steps:
- uses: https://github.com/actions/checkout@v4
- name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3
#uses: https://github.com/Frankkkkk/setup-buildx-action@master
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"

View file

@ -0,0 +1,9 @@
on:
push: '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Show env
run: env