Spaces:
Paused
Paused
| name: On Push To Main | |
| on: | |
| push: | |
| branches: ["main"] | |
| jobs: | |
| test-lint-ping: | |
| uses: ./.github/workflows/reusable-test-lint-ping.yml | |
| build-and-push-image: | |
| needs: [test-lint-ping] | |
| name: Publish Docker image to GitHub Packages | |
| runs-on: ubuntu-latest | |
| env: | |
| REGISTRY: ghcr.io | |
| IMAGE_NAME: ${{ github.repository }} | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Log in to the Container registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Extract metadata (tags, labels) for Docker | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build and push Docker image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| platforms: linux/amd64,linux/arm64 | |
| sync-to-hf: | |
| needs: [test-lint-ping] | |
| name: Sync to HuggingFace Spaces | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| lfs: true | |
| - uses: JacobLinCool/huggingface-sync@v1 | |
| with: | |
| github: ${{ secrets.GITHUB_TOKEN }} | |
| user: ${{ vars.HF_SPACE_OWNER }} | |
| space: ${{ vars.HF_SPACE_NAME }} | |
| token: ${{ secrets.HF_TOKEN }} | |
| configuration: "hf-space-config.yml" | |