mirror of
				https://github.com/pagefaultgames/pokerogue.git
				synced 2025-11-04 10:21:20 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Deploy
 | 
						|
 | 
						|
on:
 | 
						|
  push: {}
 | 
						|
  pull_request: {}
 | 
						|
 | 
						|
jobs:
 | 
						|
  deploy:
 | 
						|
    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
 | 
						|
        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
 | 
						|
        run: | 
 | 
						|
          rsync --del -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"
 |