File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ # Copyright AGNTCY Contributors (https://github.com/agntcy)
2+ # SPDX-License-Identifier: Apache-2.0
3+
4+ name : test-reusable-components-action
5+ on :
6+ workflow_dispatch :
7+ push :
8+ branches :
9+ - " ci/create-reusable-deploy-actions"
10+
11+ jobs :
12+ run-tests-gateway :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Checkout code
16+ uses : actions/checkout@v4
17+ with :
18+ fetch-depth : 0
19+
20+ - name : Setup Environment
21+ uses : ./.github/actions/deploy-components
22+ with :
23+ deploy-gateway : " true"
24+ deploy-directory : " true"
25+ install-kind-dependency : " true"
26+ install-taskfile-dependency : " true"
27+
28+ - name : Check deployments
29+ shell : bash
30+ run : |
31+ curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
32+
33+ chmod +x kubectl && mv ./kubectl /usr/local/bin
34+ kubectl get deployments
You can’t perform that action at this time.
0 commit comments