Merge pull request #5 from Semih702/feat/cicd-initial #5
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
| name: release | |
| on: | |
| push: | |
| branches: ["main"] | |
| # İstersen stable release için tag ekleyebilirsin: | |
| # push: | |
| # tags: ["v*"] | |
| permissions: | |
| contents: read | |
| packages: write | |
| env: | |
| REGISTRY: ghcr.io | |
| CHART_DIR: charts/llm-gateway | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set tags | |
| run: | | |
| echo "SHA_TAG=sha-${GITHUB_SHA::7}" >> $GITHUB_ENV | |
| echo "DEV_VER=0.1.0-dev.${GITHUB_RUN_NUMBER}" >> $GITHUB_ENV | |
| echo "OWNER_LC=$(echo '${{ github.repository_owner }}' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV | |
| - name: Login to GHCR | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Debug repo tree | |
| run: | | |
| pwd | |
| ls -la | |
| echo "---- find Dockerfiles ----" | |
| find . -maxdepth 5 -type f -name "Dockerfile" -print | |
| echo "---- find charts ----" | |
| find . -maxdepth 5 -type d -name "charts" -print | |
| echo "---- list top-level dirs ----" | |
| find . -maxdepth 2 -type d -print | |
| # ---- Build & push images ---- | |
| - name: Build & push llm-proxy | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| file: ./proxy/Dockerfile | |
| push: true | |
| tags: | | |
| ${{ env.REGISTRY }}/${{ env.OWNER_LC }}/llm-proxy:${{ env.SHA_TAG }} | |
| ${{ env.REGISTRY }}/${{ env.OWNER_LC }}/llm-proxy:edge | |
| - name: Build & push llm-collector | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| file: ./collector/Dockerfile | |
| push: true | |
| tags: | | |
| ${{ env.REGISTRY }}/${{ env.OWNER_LC }}/llm-collector:${{ env.SHA_TAG }} | |
| ${{ env.REGISTRY }}/${{ env.OWNER_LC }}/llm-collector:edge | |
| # ---- Package & push Helm chart to OCI ---- | |
| - name: Setup Helm | |
| uses: azure/setup-helm@v4 | |
| - name: Bump Chart.yaml version/appVersion (main snapshots) | |
| run: | | |
| python - << 'PY' | |
| import yaml | |
| from pathlib import Path | |
| chart = Path("${{ env.CHART_DIR }}") / "Chart.yaml" | |
| data = yaml.safe_load(chart.read_text()) | |
| data["version"] = "${{ env.DEV_VER }}" | |
| data["appVersion"] = "${{ env.SHA_TAG }}" | |
| chart.write_text(yaml.safe_dump(data, sort_keys=False)) | |
| print("Updated", chart, "->", data["version"], data["appVersion"]) | |
| PY | |
| shell: bash | |
| - name: Helm package & push (OCI) | |
| run: | | |
| helm package $CHART_DIR -d /tmp/charts | |
| helm push /tmp/charts/*.tgz oci://ghcr.io/${OWNER_LC}/charts |