https://github.com/yinheli/act-kaniko
https://github.com/yinheli/act-kaniko
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/yinheli/act-kaniko
- Owner: yinheli
- Created: 2023-07-17T09:56:43.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-21T14:04:17.000Z (almost 2 years ago)
- Last Synced: 2025-02-02T05:24:32.263Z (4 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# act kaniko
This action builds and pushes a docker image using [kaniko](https://github.com/GoogleContainerTools/kaniko)
> This actions only tests on gitea, May not work on github
## Example
```yaml
name: CI
run-name: ${{ gitea.actor }} is running buildon:
push:
branches:
- masterjobs:
build-image:
runs-on: ubuntu-lateststeps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 1
clean: true- name: Build image
uses: yinheli/act-kaniko@v1
with:
image: harbor.example.com/app/demo```