Skip to content

Commit

Permalink
Docker buildx with k8s without specifying endpoint argument
Browse files Browse the repository at this point in the history
Signed-off-by: Yash Sethiya <[email protected]>
  • Loading branch information
sethiyash committed Mar 21, 2024
1 parent c73a094 commit 635a9a2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release-process.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install Carvel Tools
run: ./hack/install-deps.sh

- name: Install imgpkg
uses: carvel-dev/setup-action@v1
uses: carvel-dev/setup-action@v2
with:
only: imgpkg
token: ${{ secrets.GITHUB_TOKEN }}

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -41,7 +41,7 @@ jobs:
run: |
set -e -x
minikube start --driver=docker --wait=all
docker buildx create minikube --use --driver=kubernetes --bootstrap
docker buildx create --name minikube --use --driver=kubernetes --bootstrap
./hack/build-release.sh
# Create release folder to store all the output artifacts
mkdir release
Expand All @@ -68,7 +68,7 @@ jobs:
echo '```' | tee -a ./tmp/checksums-formatted.txt
- name: Create release draft and upload release yaml
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
uses: softprops/action-gh-release@v2.0.2
with:
name: ${{ github.ref_name }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -80,7 +80,7 @@ jobs:
prerelease: true

- name: Get uploaded release YAML checksum
uses: actions/github-script@v6
uses: actions/github-script@v7.0.1
id: get-checksums-from-draft-release
if: startsWith(github.ref, 'refs/tags/')
with:
Expand Down

0 comments on commit 635a9a2

Please sign in to comment.