feat(translations): update Russian #298
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: cd | |
on: | |
push: | |
branches: [master] | |
paths-ignore: ["**/README.md"] | |
jobs: | |
cd: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [14] | |
steps: | |
- name: Checkout π | |
uses: actions/[email protected] | |
- name: Setup node env π | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'yarn' | |
- name: Install dependencies π¨π»βπ» | |
run: yarn | |
- name: Build for production π· | |
run: yarn build | |
- name: Deploy π | |
uses: s0/[email protected] | |
env: | |
REPO: self | |
BRANCH: build | |
FOLDER: dist | |
MESSAGE: "{msg}\n{long-sha}" | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update screenshots π | |
uses: benc-uk/[email protected] | |
with: | |
workflow: cd | |
repo: Soundux/screenshots | |
token: ${{ secrets.PERSONAL_TOKEN }} |