mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-09-23 23:13:42 +02:00
* Add Dockerfile * Refactor for improved podman support * Podman support + docs * Update documentation for podman usage * Update docs/podman.md with working podman run command * Add package manager constraint to package.json and Dockerfile Update podman.md docs * Remove package manager constraints from github workflows per DayKev Update podman.md docs with extra steps for locales and testing command Remove missleading comment from Dockerfile * Remove Dockerfile comment * Re-add `pnpm` version to Github Pages workflow * Mention podman in CONTRIBUTING.md Fix typo in docs/podman.md test command * Fix path to docs/podman.md --------- Co-authored-by: Lugiad <adrien.grivel@hotmail.fr> Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> Co-authored-by: Bertie690 <136088738+Bertie690@users.noreply.github.com> Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com>
63 lines
1.9 KiB
YAML
63 lines
1.9 KiB
YAML
name: Deploy Main
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
if: github.repository == 'pagefaultgames/pokerogue'
|
|
timeout-minutes: 10
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
|
|
- name: Install dependencies
|
|
run: pnpm i
|
|
|
|
- name: Build
|
|
run: pnpm build
|
|
env:
|
|
NODE_ENV: production
|
|
|
|
- name: Set up SSH
|
|
if: github.event_name == 'push' && github.ref_name == 'main'
|
|
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 == 'main'
|
|
run: |
|
|
rsync --del --no-times --checksum -vrm dist/* ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:${{ secrets.DESTINATION_DIR }}
|
|
ssh -t ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }} "~/prmanifest --inpath ${{ secrets.DESTINATION_DIR }} --outpath ${{ secrets.DESTINATION_DIR }}/manifest.json"
|
|
|
|
- name: Purge Cloudflare Cache
|
|
if: github.event_name == 'push' && github.ref_name == 'main'
|
|
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: |
|
|
https://pokerogue.net/
|
|
https://pokerogue.net/index.html
|
|
https://pokerogue.net/manifest.json
|
|
https://pokerogue.net/manifest.webmanifest
|
|
https://pokerogue.net/service-worker.js |