Skip to content

Commit

Permalink
Working version v1
Browse files Browse the repository at this point in the history
  • Loading branch information
mszostok committed Jun 17, 2024
1 parent acefb61 commit 2f54cec
Show file tree
Hide file tree
Showing 4 changed files with 267 additions and 254 deletions.
21 changes: 16 additions & 5 deletions .github/actions/cloud-slack-e2e/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@ inputs:
runs:
using: "composite"
steps:
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: ${{ env.HELM_VERSION }}

- name: Download k3d
shell: bash
run: "wget -q -O - https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | TAG=${K3D_VERSION} bash"
Expand All @@ -69,6 +64,22 @@ runs:
shell: bash
run: "k3d cluster create cloud-slack-e2e-cluster --wait --timeout=5m"

- name: CLI Cache
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
dist/botkube-cli_linux_amd64_v1/botkube
key: botkube-cli_linux_amd64_v1

- name: Build CLI
run: make build-single-arch-cli

- name: Add Botkube CLI to env
run: |
echo BOTKUBE_CLI_BINARY_PATH="$PWD/dist/botkube-cli_linux_amd64_v1/botkube" >> $GITHUB_ENV
- name: Setup Go modules
id: modules
uses: ./.github/actions/setup-go-mod-private
Expand Down
Loading

0 comments on commit 2f54cec

Please sign in to comment.