2024-03-26 23:15:43 +00:00
|
|
|
name: Deploy
|
|
|
|
|
|
|
|
on:
|
2024-03-27 00:50:44 +00:00
|
|
|
push: {}
|
|
|
|
pull_request: {}
|
2024-03-26 23:15:43 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
2024-05-24 22:26:23 +00:00
|
|
|
if: github.repository == 'pagefaultgames/pokerogue'
|
2024-03-26 23:15:43 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-03-27 00:50:44 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
2024-03-26 23:15:43 +00:00
|
|
|
with:
|
2024-03-27 00:50:44 +00:00
|
|
|
node-version: "20"
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci
|
|
|
|
- name: Build
|
|
|
|
run: npm run build
|
|
|
|
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.SSH_PUBLIC_KEY }}" > ~/.ssh/id_ed25519.pub
|
|
|
|
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
|
|
|
|
chmod 600 ~/.ssh/*
|
|
|
|
ssh-keyscan -H ${{ secrets.SSH_HOST }} >> ~/.ssh/known_hosts
|
|
|
|
- name: Deploy build on server
|
|
|
|
if: github.event_name == 'push' && github.ref_name == github.event.repository.default_branch
|
2024-04-23 23:31:40 +00:00
|
|
|
run: |
|
2024-04-25 03:10:16 +00:00
|
|
|
rsync --del --no-times --checksum -vrm dist/* ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:${{ secrets.DESTINATION_DIR }}
|
2024-04-23 23:31:40 +00:00
|
|
|
ssh -t ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }} "~/prmanifest --inpath ${{ secrets.DESTINATION_DIR }} --outpath ${{ secrets.DESTINATION_DIR }}/manifest.json"
|
2024-04-26 01:36:34 +00:00
|
|
|
- name: Purge Cloudflare Cache
|
2024-04-26 01:42:09 +00:00
|
|
|
if: github.event_name == 'push' && github.ref_name == github.event.repository.default_branch
|
|
|
|
id: purge-cache
|
|
|
|
uses: NathanVaughn/actions-cloudflare-purge@v3.1.0
|
|
|
|
with:
|
|
|
|
cf_auth: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
|
|
cf_zone: ${{ secrets.CLOUDFLARE_ZONE_ID }}
|
|
|
|
files: |
|
2024-04-26 01:36:34 +00:00
|
|
|
https://pokerogue.net/
|
|
|
|
https://pokerogue.net/index.html
|
2024-05-02 19:48:59 +00:00
|
|
|
https://pokerogue.net/manifest.json
|
|
|
|
https://pokerogue.net/manifest.webmanifest
|
|
|
|
https://pokerogue.net/service-worker.js
|