Skip to content

Commit

Permalink
Trying to fix file
Browse files Browse the repository at this point in the history
  • Loading branch information
Arv1nt3 committed Jan 8, 2024
1 parent da74753 commit 849b52b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ runs:
INPUT_ENV_VARS: ${{ inputs.env_vars }}

- run: |
cat deployment.yaml
cat ${{ github.action_path }}/deployment.yaml
shell: bash
- name: Setup Kind
Expand All @@ -95,9 +95,9 @@ runs:
shell: bash
- run: |
kubectl apply -f sa.yaml
kubectl apply -f crb.yaml
kubectl apply -f deployment.yaml
kubectl apply -f ${{ github.action_path }}/sa.yaml
kubectl apply -f ${{ github.action_path }}/crb.yaml
kubectl apply -f ${{ github.action_path }}/deployment.yaml
echo "Sleeping for ${{ inputs.timeoutSeconds }}s to allow the pod to fully start."
sleep ${{ inputs.timeoutSeconds }}
kubectl get po
Expand Down

0 comments on commit 849b52b

Please sign in to comment.