Add option to replace underscores in author names for TTS #63
Workflow file for this run
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: Build and Deploy Auxiliary | |
| # | |
| #on: | |
| # push: | |
| # paths: | |
| # - "auxiliary/**" | |
| # branches: | |
| # - main | |
| # pull_request: | |
| # paths: | |
| # - "auxiliary/**" | |
| # branches: | |
| # - 'main' | |
| # workflow_dispatch: | |
| # | |
| #jobs: | |
| # build: | |
| # runs-on: ubuntu-latest | |
| # permissions: | |
| # contents: read | |
| # packages: write | |
| # | |
| # steps: | |
| # - name: Checkout repository | |
| # uses: actions/checkout@v4 | |
| # | |
| # - name: Set up Docker Buildx | |
| # uses: docker/setup-buildx-action@v1 | |
| # | |
| # - name: Log in to the Container registry | |
| # uses: docker/login-action@v1 | |
| # with: | |
| # registry: ghcr.io | |
| # username: ${{ github.actor }} | |
| # password: ${{ secrets.GITHUB_TOKEN }} | |
| # | |
| # - name: Extract metadata (tags, labels) for Docker | |
| # id: meta | |
| # uses: docker/metadata-action@v3 | |
| # with: | |
| # images: ghcr.io/muxable/rtchat-auxiliary | |
| # tags: | | |
| # type=ref,event=branch | |
| # type=ref,event=pr | |
| # type=semver,pattern={{version}} | |
| # type=semver,pattern={{major}}.{{minor}} | |
| # | |
| # - name: Build and push Docker image | |
| # uses: docker/build-push-action@v2 | |
| # with: | |
| # context: ./auxiliary | |
| # push: true | |
| # tags: ${{ steps.meta.outputs.tags }} | |
| # labels: ${{ steps.meta.outputs.labels }} | |
| # cache-from: type=gha | |
| # cache-to: type=gha,mode=max | |
| # | |
| # deploy: | |
| # if: github.ref == 'refs/heads/main' | |
| # runs-on: ubuntu-latest | |
| # needs: build | |
| # concurrency: | |
| # group: deploy | |
| # cancel-in-progress: true | |
| # | |
| # steps: | |
| # - name: Checkout repository | |
| # uses: actions/checkout@v4 | |
| # | |
| # - uses: google-github-actions/auth@v0 | |
| # with: | |
| # credentials_json: ${{ secrets.SERVICE_ACCOUNT_JSON }} | |
| # | |
| # - name: Set up Cloud SDK | |
| # uses: google-github-actions/setup-gcloud@v0 | |
| # | |
| # - name: Deploy to GCE | |
| # id: deploy | |
| # run: | | |
| # gcloud compute instance-groups managed rolling-action start-update auxiliary-us-central1 --version=template=auxiliary-e2-micro --zone=us-central1-a |