test/.gitea/workflows/demo.yaml
Pierre-Arthur Mathieu ed3eebd52d
All checks were successful
Gitea Actions Demo / build (push) Successful in 39s
test
2025-03-09 17:49:16 +01:00

31 lines
860 B
YAML

name: Gitea Actions Demo
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
# - name: Build docker image
# uses: https://code.thetadev.de/ThetaDev/action-kaniko@v1
# with:
# #registry: "10.42.1.152:3000"
# registry: "git.plop.in:80"
# image: "admin/test"
# username: admin
# password: ${{ secrets.PAT_TOKEN }}
# platforms: "linux/arm64"
# extra_args: "--insecure"
- name: Build docker image
uses: aevea/action-kaniko@master
with:
registry: "git.plop.in"
image: admin/test
username: admin
password: ${{ secrets.PAT_TOKEN }}
#extra_args: "--insecure --insecure-registry git.plop.in"
extra_args: "--insecure"