Skip to content

Commit

Permalink
add workflow steps
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxHorstmann committed Jul 6, 2023
1 parent 55e7fbb commit b15e2e3
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/deploy-lts-prow.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
name: Deploy AKS LTS Prow
on: [push]
on: [push, workflow_dispatch]
jobs:
Deploy_AKS_LTS_Prow:
runs-on: ubuntu-latest
env:
KUBECONFIG: ./kubeconfig-aks-lts-prow
steps:
- name: Check out repository code
- name: Check out repo
uses: actions/checkout@v3

- name: List files in the repository
run: |
ls ${{ github.workspace }}
- name: Write kubeconfig
run: echo ${{ secrets.AKS_LTS_PROW_KUBECONFIG }} > ./kubeconfig-aks-lts-prow

- name: Install Kubectl
uses: azure/setup-kubectl@v3

- name: 'Apply Prow base manifests'
run: for f in config/prow/k8s/base/*.yaml; do kubectl apply --server-side=true -f $f; done


0 comments on commit b15e2e3

Please sign in to comment.