feat(translations): update Greek #315
This file contains hidden or 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/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 }} |