Update index.html #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy German | |
on: | |
push: | |
branches: ["main"] | |
schedule: | |
- cron: "0 0 1 * *" | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set current date | |
run: echo "DATETIME=$(date +'%Y_%m_%d_%H_%M')" >> $GITHUB_ENV | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23 | |
- name: Install Hugo Extended | |
uses: peaceiris/actions-hugo@v3 | |
with: | |
hugo-version: "latest" | |
extended: true | |
- name: Build Hugo site | |
run: | | |
hugo mod get | |
hugo | |
- name: Deploy files via SSH | |
uses: appleboy/scp-action@v0.1.7 | |
with: | |
host: ${{ secrets.SSH_SERVER }} | |
username: ${{ secrets.SSH_USERNAME }} | |
source: "public/*" | |
target: "/var/www/isst25" | |
rm: true | |
password: ${{ secrets.SSH_PASSWORD }} | |
- name: Create folder structure | |
uses: appleboy/ssh-action@v1.1.0 | |
with: | |
host: ${{ secrets.SSH_SERVER }} | |
username: ${{ secrets.SSH_USERNAME }} | |
password: ${{ secrets.SSH_PASSWORD }} | |
script: cd /var/www/isst25; mv public/* .; rm -rf public |