Skip to content
This repository has been archived by the owner on Jun 29, 2024. It is now read-only.

Update README.md

Update README.md #77

Workflow file for this run

name: Translations
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
upload_translations:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
with:
channel: 'beta'
- name: Install dependencies
run: flutter pub get
- name: Build and upload translation templates
run: flutter pub run upload_translatable.dart
env:
CROWDIN_API_KEY: ${{ secrets.CROWDIN_API_KEY }}