Fix translation js json parser error #30
Workflow file for this run
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: Release | |
# Controls when the workflow will run | |
on: | |
push: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: [self-hosted] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run containers | |
run: > | |
ROUTER_NAME=tiedeapp_prod | |
DOMAIN=tiede.app | |
IMAGE_TAG=prod | |
RAILS_MASTER_KEY=${{ secrets.RAILS_MASTER_KEY }} | |
POSTGRES_PASSWORD=${{ secrets.POSTGRES_PASSWORD }} | |
GITHUB_RELEASE_VERSION=${{ github.ref }} | |
POSTGRES_HOSTNAME=XbFkVz | |
docker compose --file docker-compose.yml --project-name tiedeapp_prod up --detach --remove-orphans --build |