| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- name: Docs deploy
- on:
- workflow_dispatch:
- push:
- branches: ["main"]
- permissions:
- contents: read
- packages: write
- attestations: write
- id-token: write
- jobs:
- build:
- if: github.repository == 'TecharoHQ/anubis'
- runs-on: ubuntu-24.04
- steps:
- - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- with:
- persist-credentials: false
- - name: Set up Docker Buildx
- uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
- - name: Log into registry
- uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
- with:
- registry: ghcr.io
- username: techarohq
- password: ${{ secrets.GITHUB_TOKEN }}
- - name: Docker meta
- id: meta
- uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
- with:
- images: ghcr.io/techarohq/anubis/docs
- tags: |
- type=sha,enable=true,priority=100,prefix=,suffix=,format=long
- main
- - name: Build and push
- id: build
- uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
- with:
- context: ./docs
- cache-to: type=gha
- cache-from: type=gha
- tags: ${{ steps.meta.outputs.tags }}
- labels: ${{ steps.meta.outputs.labels }}
- platforms: linux/amd64
- push: true
- - name: Apply k8s manifests to limsa lominsa
- uses: actions-hub/kubectl@3ece3793e7a9fe94effe257d03ac834c815ea87d # v1.35.1
- env:
- KUBE_CONFIG: ${{ secrets.LIMSA_LOMINSA_KUBECONFIG }}
- with:
- args: apply -k docs/manifest
- - name: Apply k8s manifests to limsa lominsa
- uses: actions-hub/kubectl@3ece3793e7a9fe94effe257d03ac834c815ea87d # v1.35.1
- env:
- KUBE_CONFIG: ${{ secrets.LIMSA_LOMINSA_KUBECONFIG }}
- with:
- args: rollout restart -n default deploy/anubis-docs
|