Skip to content

Make instance api_base_url lower case. #90

Make instance api_base_url lower case.

Make instance api_base_url lower case. #90

Workflow file for this run

on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy_web:
name: Deploy web
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Delete huge unnecessary tools folder
run: rm -rf /opt/hostedtoolcache
- uses: actions/checkout@v4
- uses: adamghill/[email protected]
with:
caprover-app-name: fediview-web
github-token: ${{ secrets.GITHUB_TOKEN }}
caprover-server-url: ${{ secrets.CAPROVER_SERVER_URL }}
caprover-app-token: ${{ secrets.CAPROVER_WEB_APP_TOKEN }}
docker-file-name: ./Dockerfile
image-name: adamghill/fediview-web
deploy_worker:
name: Deploy worker
runs-on: ubuntu-latest
needs: deploy_web
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Delete huge unnecessary tools folder
run: rm -rf /opt/hostedtoolcache
- uses: adamghill/[email protected]
with:
caprover-app-name: fediview-q2-worker
github-token: ${{ secrets.GITHUB_TOKEN }}
caprover-server-url: ${{ secrets.CAPROVER_SERVER_URL }}
caprover-app-token: ${{ secrets.CAPROVER_WORKER_APP_TOKEN }}
docker-file-name: ./Dockerfile-q2-worker
image-name: adamghill/fediview-worker