mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-12 06:08:55 -05:00
* Attempt 1, I suppose. * Add the remaining 2 out of 3 jobs * Spacing matters T_T * So does formatting... * More formatting fixing. * First attempt at postgres services. * Postgres attempt 2 * Update tests.yml Flatten a python version I suppose. * Update tests.yml * Update tests.yml * Update tests.yml * Update tests.yml * I wonder if this works lmao * this is fun™ * let's go back * add fail-fast * Added publishing workflows Co-authored-by: jack1142 <6032823+jack1142@users.noreply.github.com>
29 lines
776 B
YAML
29 lines
776 B
YAML
name: Publish to Crowdin
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: '3.8'
|
|
- name: Install dependencies
|
|
run: |
|
|
curl https://artifacts.crowdin.com/repo/GPG-KEY-crowdin | sudo apt-key add -
|
|
echo "deb https://artifacts.crowdin.com/repo/deb/ /" | sudo tee -a /etc/apt/sources.list
|
|
sudo apt-get update -qq
|
|
sudo apt-get install -y crowdin
|
|
pip install redgettext==3.1
|
|
- name: Publish
|
|
env:
|
|
CROWDIN_API_KEY: ${{ secrets.crowdin_token}}
|
|
CROWDIN_PROJECT_ID: ${{ secrets.crowdin_identifier }}
|
|
run: |
|
|
make upload_translations
|