first commit
This commit is contained in:
28
.gitea/workflows/main.yaml
Normal file
28
.gitea/workflows/main.yaml
Normal file
@ -0,0 +1,28 @@
|
||||
name: curl-with-bash-build mr
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
Dockerfile lint:
|
||||
runs-on: k3s
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: hadolint/hadolint-action@v3.1.0
|
||||
with:
|
||||
dockerfile: Dockerfile
|
||||
|
||||
build:
|
||||
needs: Dockerfile lint
|
||||
runs-on: k3s
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Kaniko build
|
||||
uses: aevea/action-kaniko@master
|
||||
with:
|
||||
image: rogersik/curl-with-bash
|
||||
registry: gitea.sikorski.cloud
|
||||
tag: "8.6.0"
|
||||
cache: true
|
||||
username: rogersik
|
||||
password: ${{ secrets.REGISTRY_PASSWORD }}
|
Reference in New Issue
Block a user