Skip to content

feat(translations): update Greek #315

feat(translations): update Greek

feat(translations): update Greek #315

Workflow file for this run

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/checkout@v2.3.4
- name: Setup node env ๐Ÿ—
uses: actions/setup-node@v2.4.0
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป
run: yarn
- name: Build for production ๐Ÿ‘ท
run: yarn build
- name: Deploy ๐Ÿš€
uses: s0/git-publish-subdir-action@v2.5.0
env:
REPO: self
BRANCH: build
FOLDER: dist
MESSAGE: "{msg}\n{long-sha}"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Update screenshots ๐Ÿ‘€
uses: benc-uk/workflow-dispatch@v1.1
with:
workflow: cd
repo: Soundux/screenshots
token: ${{ secrets.PERSONAL_TOKEN }}
โšก