Add mark_safe to INDEX_MESSAGE and ALL_PAGES_MESSAGE #788
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
# This workflow deploy beta anytask locally | |
name: Deploy local beta | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: pip3 install virtualenv | |
- name: Deploy | |
run: source deploy_local_beta/run.sh --python-path=python3 |