[Localization][QoL] i18 changes to split Spanish into es-ES and es-MX like the original games are doing #707
Workflow file for this run
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: Deploy Beta | |
on: | |
push: {} | |
pull_request: {} | |
jobs: | |
deploy: | |
if: github.repository == 'pagefaultgames/pokerogue' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build:beta | |
env: | |
NODE_ENV: production | |
- name: Set up SSH | |
if: github.event_name == 'push' && github.ref_name == github.event.repository.default_branch | |
run: | | |
mkdir ~/.ssh | |
echo "${{ secrets.BETA_SSH_PUBLIC_KEY }}" > ~/.ssh/id_ed25519.pub | |
echo "${{ secrets.BETA_SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519 | |
chmod 600 ~/.ssh/* | |
ssh-keyscan -H ${{ secrets.BETA_SSH_HOST }} >> ~/.ssh/known_hosts | |
- name: Deploy build on server | |
if: github.event_name == 'push' && github.ref_name == github.event.repository.default_branch | |
run: | | |
rsync --del --no-times --checksum -vrm dist/* ${{ secrets.BETA_SSH_USER }}@${{ secrets.BETA_SSH_HOST }}:${{ secrets.BETA_DESTINATION_DIR }} |