Fix language query to fetch only based on codename (#98) #79
This file contains 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: Docker | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-push-api: | |
name: Deploy API Docker Image | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Build and push | |
uses: openzim/docker-publish-action@v10 | |
with: | |
restrict-to: openzim/cms | |
image-name: openzim/cms-api | |
context: backend | |
on-master: latest | |
registries: ghcr.io | |
credentials: | |
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }} | |
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }} | |
build-and-push-ui: | |
name: Deploy UI Docker Image | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Build and push | |
uses: openzim/docker-publish-action@v10 | |
with: | |
restrict-to: openzim/cms | |
image-name: openzim/cms-ui | |
context: frontend | |
on-master: latest | |
registries: ghcr.io | |
credentials: | |
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }} | |
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }} | |
- name: Restart live API | |
uses: actions-hub/kubectl@master | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | |
with: | |
args: rollout restart deployments api-deployment -n cms | |
- name: Restart live UI | |
uses: actions-hub/kubectl@master | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | |
with: | |
args: rollout restart deployments ui-deployment -n cms |