mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-07 08:52:17 +02:00
create test_instance
This commit is contained in:
parent
fa2d257144
commit
d849c54db8
41
.github/workflows/deploy.yml
vendored
41
.github/workflows/deploy.yml
vendored
@ -1,12 +1,12 @@
|
|||||||
name: Deploy
|
name: Deploy
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push: {}
|
push:
|
||||||
pull_request: {}
|
branches: [ test_instance ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: self-hosted
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
@ -18,29 +18,12 @@ jobs:
|
|||||||
run: npm run build
|
run: npm run build
|
||||||
env:
|
env:
|
||||||
NODE_ENV: production
|
NODE_ENV: production
|
||||||
- name: Set up SSH
|
- name: Removing previous build
|
||||||
if: github.event_name == 'push' && github.ref_name == github.event.repository.default_branch
|
run: sudo rm -rf /var/www/pokerogue
|
||||||
run: |
|
shell: bash
|
||||||
mkdir ~/.ssh
|
- name: Moving build to apache
|
||||||
echo "${{ secrets.SSH_PUBLIC_KEY }}" > ~/.ssh/id_ed25519.pub
|
run: sudo cp -r //home/greenlamp/download/important/actions-runner/_work/pokerogue/pokerogue/dist /var/www/pokerogue/
|
||||||
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
|
shell: bash
|
||||||
chmod 600 ~/.ssh/*
|
- name: Changing build owner
|
||||||
ssh-keyscan -H ${{ secrets.SSH_HOST }} >> ~/.ssh/known_hosts
|
run: sudo chown greenlamp:greenlamp /var/www/pokerogue
|
||||||
- name: Deploy build on server
|
shell: bash
|
||||||
if: github.event_name == 'push' && github.ref_name == github.event.repository.default_branch
|
|
||||||
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 == 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: |
|
|
||||||
https://pokerogue.net/
|
|
||||||
https://pokerogue.net/index.html
|
|
||||||
https://pokerogue.net/manifest.json
|
|
||||||
https://pokerogue.net/manifest.webmanifest
|
|
||||||
https://pokerogue.net/service-worker.js
|
|
Loading…
Reference in New Issue
Block a user