39 lines
		
	
	
		
			No EOL
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			No EOL
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
on:
 | 
						|
  push:
 | 
						|
    tags:
 | 
						|
      - 'v*'
 | 
						|
 | 
						|
jobs:
 | 
						|
  build:
 | 
						|
    runs-on: docker
 | 
						|
    container:
 | 
						|
      image: node:21-bullseye # Required by actions/checkout and actions/upload-artifact
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v4
 | 
						|
      - name: Install dependencies
 | 
						|
        run: npm install
 | 
						|
      - name: Build
 | 
						|
        run: npx @11ty/eleventy
 | 
						|
      - name: Upload artifact
 | 
						|
        uses: https://data.forgejo.org/forgejo/upload-artifact@v4
 | 
						|
        with:
 | 
						|
          name: dist
 | 
						|
          path: dist/
 | 
						|
  deploy:
 | 
						|
    needs: [build]
 | 
						|
    runs-on: docker
 | 
						|
    container:
 | 
						|
      image: node:21-bullseye # Required by actions/download-artifact
 | 
						|
    steps:
 | 
						|
      - uses: https://data.forgejo.org/forgejo/download-artifact@v4
 | 
						|
        with:
 | 
						|
          name: dist
 | 
						|
      - name: rsync deployment
 | 
						|
        uses: https://git.hostux.fr/Hostux/rsync-deployments@6.0.0
 | 
						|
        with:
 | 
						|
          switches: -az --no-o --no-g --no-devices --no-specials --delete --progress --checksum
 | 
						|
          path: .
 | 
						|
          remote_path: ${{ secrets.DEPLOY_PATH }}
 | 
						|
          remote_host: ${{ secrets.DEPLOY_HOST }}
 | 
						|
          remote_user: ${{ secrets.DEPLOY_USER }}
 | 
						|
          remote_key: ${{ secrets.DEPLOY_KEY }} |