ci: configura deploy automatico para k3s
This commit is contained in:
parent
620b110b9c
commit
e8881c30b3
1 changed files with 6 additions and 1 deletions
|
|
@ -9,9 +9,12 @@ on:
|
|||
jobs:
|
||||
build-and-push:
|
||||
runs-on: docker-ready
|
||||
# ISSO AQUI RESOLVE O ERRO DE VERSÃO DA API
|
||||
env:
|
||||
DOCKER_API_VERSION: "1.43"
|
||||
defaults:
|
||||
run:
|
||||
shell: sh # <--- ISSO AQUI OBRIGA O RUNNER A PARAR DE PEDIR BASH
|
||||
shell: sh
|
||||
steps:
|
||||
- name: Install Dependencies
|
||||
run: |
|
||||
|
|
@ -61,6 +64,8 @@ jobs:
|
|||
deploy-to-k3s:
|
||||
needs: build-and-push
|
||||
runs-on: docker-ready
|
||||
env:
|
||||
DOCKER_API_VERSION: "1.43"
|
||||
defaults:
|
||||
run:
|
||||
shell: sh
|
||||
|
|
|
|||
Loading…
Reference in a new issue