Schemas #422
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Schemas | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
push: | |
branches: ["main"] | |
paths: [".github/workflows/schemas.yaml"] | |
env: | |
UV_SYSTEM_PYTHON: "1" | |
jobs: | |
main: | |
name: Schemas | |
runs-on: [home-ops-runner-main] | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Configure 1password | |
uses: 1password/load-secrets-action/configure@581a835fb51b8e7ec56b71cf2ffddd7e68bb25e0 # v2.0.0 | |
with: | |
connect-host: ${{ secrets.OP_CONNECT_HOST}} | |
connect-token: ${{ secrets.OP_CONNECT_TOKEN }} | |
- name: Get Secrets | |
uses: 1password/load-secrets-action@581a835fb51b8e7ec56b71cf2ffddd7e68bb25e0 # v2.0.0 | |
with: | |
export-env: true | |
env: | |
CLOUDFLARE_API_TOKEN: op://Kubernetes/cloudflare/CLOUDFLARE_API_TOKEN_GHA | |
CLOUDFLARE_ACCOUNT_ID: op://Kubernetes/cloudflare/CLOUDFLARE_ACCOUNT_TAG | |
- name: Generate Token | |
uses: actions/create-github-app-token@af35edadc00be37caa72ed9f3e6d5f7801bfdf09 # v1.11.7 | |
id: app-token | |
with: | |
app-id: ${{ secrets.BOT_APP_ID }} | |
private-key: ${{ secrets.BOT_APP_PRIVATE_KEY }} | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
token: ${{ steps.app-token.outputs.token }} | |
- name: Install kubectl | |
uses: azure/setup-kubectl@3e0aec4d80787158d308d7b364cb1b702e7feb7f # v4.0.0 | |
- name: Install uv | |
uses: astral-sh/setup-uv@22695119d769bdb6f7032ad67b9bca0ef8c4a174 # v5.4.0 | |
- name: Setup Python | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 | |
with: | |
python-version: 3.13.x | |
- name: Setup Node | |
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0 | |
with: | |
node-version: 22.x | |
- name: Install Python Dependencies | |
run: uv pip install pyyaml | |
- name: Run crd-extractor | |
run: curl -fsSL https://raw.githubusercontent.com/datreeio/CRDs-catalog/43e4407642d4c37683c88711f37caa6c9c20ca40/Utilities/crd-extractor.sh | bash | |
- name: Publish Schemas | |
uses: cloudflare/wrangler-action@da0e0dfe58b7a431659754fdf3f186c529afbe65 # v3.14.1 | |
with: | |
apiToken: ${{ env.CLOUDFLARE_API_TOKEN }} | |
accountId: ${{ env.CLOUDFLARE_ACCOUNT_ID }} | |
workingDirectory: /home/runner/.datree/crdSchemas | |
command: pages deploy --project-name=kube-schemas --branch main . |