feat(ci): Add kaniko build GitHub action
This commit is contained in:
27
.github/workflows/push.yml
vendored
Normal file
27
.github/workflows/push.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
name: Commit
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
name: Build docker image
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- name: GitHub Package Registry
|
||||
uses: outillage/kaniko-action@master
|
||||
with:
|
||||
registry: docker.pkg.github.com
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
image: kaniko
|
||||
cache: true
|
||||
cache_registry: cache
|
||||
|
||||
- name: Dockerhub
|
||||
uses: outillage/kaniko-action@master
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
image: outillage/kaniko
|
||||
cache: true
|
||||
cache_registry: outillage/cache
|
||||
Reference in New Issue
Block a user