feat(translations): add Japanese #173
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 | |
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: Generate ๐ท | |
run: yarn generate | |
- name: Deploy ๐ | |
uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist | |
commit_message: ${{ github.event.head_commit.message }} | |
cname: soundux.rocks |