echo content into file
Build and Push Image / Build and push image (push) Failing after 6s Details

This commit is contained in:
Tobias Brunner 2023-11-18 22:52:35 +01:00
parent a6e9b2c404
commit f4d1ad4aa8
Signed by: tobru
SSH Key Fingerprint: SHA256:kywVhvCA+MIxL6eBgoQa+BfC/ROJqcfD2bpy1PR6Ebk
1 changed files with 5 additions and 3 deletions

View File

@ -1,9 +1,6 @@
name: Build and Push Image
on: [ push ]
env:
KUBECONFIG: ${{ secrets.KUBECONFIG_BUILDX }}
jobs:
build:
name: Build and push image
@ -13,6 +10,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Create Kubeconfig
run: |
mkdir $HOME/.kube
echo ${{ secrets.KUBECONFIG_BUILDX }} > $HOME/.kube/config
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with: