mirror of
https://github.com/aevea/action-kaniko.git
synced 2025-04-20 09:08:14 +02:00
19 lines
394 B
YAML
19 lines
394 B
YAML
name: Commit
|
|
on: push
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
name: Build docker image
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
|
|
- name: GitHub Package Registry
|
|
uses: ohioit/action-kaniko@master
|
|
with:
|
|
registry: ghcr.io
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
image: kaniko
|
|
cache: true
|
|
cache_registry: cache
|
|
|