Skip to content

fix: Updating workflows for example dirs and adding missing doc index #63

fix: Updating workflows for example dirs and adding missing doc index

fix: Updating workflows for example dirs and adding missing doc index #63

name: Kustomize GitHub Actions for skyline
on:
pull_request:
paths:
- kustomize.example/skyline/**
- .github/workflows/kustomize-skyline.yaml
jobs:
kustomize:
strategy:
matrix:
overlays:
- base
- aio
- fqdn
name: Kustomize
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Kustomize Install
working-directory: /usr/local/bin/
run: |
if [ ! -f /usr/local/bin/kustomize ]; then
curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | sudo bash
fi
- name: Run Kustomize Build
run: |
kustomize build kustomize.example/skyline/${{ matrix.overlays }} > /tmp/rendered.yaml
- name: Return Kustomize Build
uses: actions/upload-artifact@v2
with:
name: kustomize-skyline-artifact-${{ matrix.overlays }}
path: /tmp/rendered.yaml