Skip to content

Commit

Permalink
fixed the nil pointer issue for --approve -> --yes
Browse files Browse the repository at this point in the history
Signed-off-by: Dipankar Das <[email protected]>
  • Loading branch information
dipankardas011 committed May 31, 2024
1 parent 838af7f commit 0df8c59
Show file tree
Hide file tree
Showing 11 changed files with 838 additions and 405 deletions.
758 changes: 379 additions & 379 deletions .github/workflows/test-mock.bkp.yml

Large diffs are not rendered by default.

17 changes: 9 additions & 8 deletions .github/workflows/test-mock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,38 +36,39 @@ jobs:
KSCTL_FAKE_FLAG_ENABLED: "1"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21.0
go-version: 1.22.3

- name: build ksctl windows
if: ${{ matrix.os == 'windows-latest' }}
run: |
cd .\scripts
.\builder.ps1
cd C:\Users\runneradmin\AppData\Local\ksctl
.\ksctl.exe version
echo "KSCTL_BIN=.\C:\Users\runneradmin\AppData\Local\ksctl\ksctl.exe" >> ${GITHUB_ENV}
${{ env.KSCTL_BIN }} version
- name: build ksctl linux
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
set -x
make install_linux
ksctl version
echo "KSCTL_BIN=ksctl" >> ${GITHUB_ENV}
${{ env.KSCTL_BIN }} version
- name: build ksctl macos
if: ${{ matrix.os == 'macos-latest' }}
run: |
set -x
make install_macos_intel
ksctl version
echo "KSCTL_BIN=ksctl" >> ${GITHUB_ENV}
${{ env.KSCTL_BIN }} version
- name: civo create
Expand Down
Loading

0 comments on commit 0df8c59

Please sign in to comment.