Compare commits
	
		
			1 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 824b5c9b81 | 
							
								
								
									
										22
									
								
								.drone.yml
									
									
									
									
									
								
							
							
						
						
									
										22
									
								
								.drone.yml
									
									
									
									
									
								
							@@ -1,22 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
kind: pipeline
 | 
			
		||||
name: default
 | 
			
		||||
 | 
			
		||||
steps:
 | 
			
		||||
  - name: build
 | 
			
		||||
    image: ghcr.io/getzola/zola:v0.17.2
 | 
			
		||||
    entrypoint: ["/bin/zola"]
 | 
			
		||||
    command: ["build"]
 | 
			
		||||
 | 
			
		||||
  - name: deploy
 | 
			
		||||
    image: drillster/drone-rsync
 | 
			
		||||
    settings:
 | 
			
		||||
      hosts: ["0x45.cz"]
 | 
			
		||||
      user: drone
 | 
			
		||||
      source: public/*
 | 
			
		||||
      target: /srv/www/receptty.org
 | 
			
		||||
      recursive: true
 | 
			
		||||
      delete: true
 | 
			
		||||
    environment:
 | 
			
		||||
      RSYNC_KEY:
 | 
			
		||||
        from_secret: rsync_private_key
 | 
			
		||||
							
								
								
									
										39
									
								
								.gitea/workflows/deploy.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								.gitea/workflows/deploy.yaml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,39 @@
 | 
			
		||||
name: Build
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    branches:
 | 
			
		||||
      - master
 | 
			
		||||
      - actions
 | 
			
		||||
 | 
			
		||||
env:
 | 
			
		||||
  ZOLA_VERSION: "0.18.0"
 | 
			
		||||
  HOST: "receptty.org"
 | 
			
		||||
  HOST_DIR: "/srv/www/receptty.org/"
 | 
			
		||||
  USERNAME: ${{ secrets.SSH_USERNAME }}
 | 
			
		||||
  SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  build:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout repository
 | 
			
		||||
        uses: actions/checkout@v4
 | 
			
		||||
 | 
			
		||||
      - name: Install Zola
 | 
			
		||||
        run: |
 | 
			
		||||
          wget https://github.com/getzola/zola/releases/download/v${ZOLA_VERSION}/zola-v${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz
 | 
			
		||||
          tar -xvzf *.tar.gz
 | 
			
		||||
 | 
			
		||||
      - name: Build
 | 
			
		||||
        run: ./zola build
 | 
			
		||||
 | 
			
		||||
      - name: Deploy
 | 
			
		||||
        run: |
 | 
			
		||||
          apt update -y && apt-get install -y --no-install-recommends rsync
 | 
			
		||||
          eval "$(ssh-agent -s)"
 | 
			
		||||
          ssh-add - <<< "${SSH_PRIVATE_KEY}"
 | 
			
		||||
          mkdir -p ~/.ssh/
 | 
			
		||||
          ssh-keyscan -H ${HOST} >> ~/.ssh/known_hosts
 | 
			
		||||
          rsync -r --delete-after public/* "${USERNAME}@${HOST}:${HOST_DIR}"
 | 
			
		||||
		Reference in New Issue
	
	Block a user