@@ -29,6 +29,26 @@ jobs:
|
||||
# run: apt install parallel -y
|
||||
# - name: Build docker container
|
||||
# run: ./build-all.sh && exit 0
|
||||
- name: Use kaniko image
|
||||
image: gcr.io/kaniko-project/executor:debug
|
||||
run: which executor && exit 1 mkdir -p /kaniko/.docker && cp config.json /kaniko/.docker/config.json && cp plugin.sh /kaniko/plugin.sh && /kaniko/plugin.sh
|
||||
- name: Kaniko build htop
|
||||
uses: aevea/action-kaniko@master
|
||||
with:
|
||||
image: uleenucks/htop
|
||||
build_file: htop/Dockerfile
|
||||
path: htop
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
cache: false
|
||||
exra_args:
|
||||
- --cleanup
|
||||
|
||||
- name: Kaniko build lynx
|
||||
uses: aevea/action-kaniko@master
|
||||
with:
|
||||
image: uleenucks/lynx
|
||||
build_file: lynx/Dockerfile
|
||||
path: lynx
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
cache: false
|
||||
exra_args:
|
||||
- --cleanup
|
||||
|
||||
Reference in New Issue
Block a user