digitale-selbstverteidigung.../.forgejo/workflows/deploy.yaml
June 9cf7c5b9c4
introduce Forgejo Actions CI for deploying website and staging envs
uses cryptoparty.hamburg.ccc.de for now and deploys this PR as the main
site
2025-07-23 20:18:34 +02:00

81 lines
3.2 KiB
YAML

on:
push:
branches:
- master
pull_request:
env:
TZ: Europe/Berlin
jobs:
build:
runs-on: docker
container:
image: docker.io/hugomods/hugo:0.147.9
steps:
- name: Pipeline info
run: |
echo "Run triggered by ${{ github.event_name }} (${{ github.event.action }}) on ref ${{ github.ref_name }}"
- name: Install packages
run: |
apk update
# For CI actions.
apk add nodejs-current
# For website build.
apk add tzdata coreutils curl jq git
# For uploading.
apk add rsync openssh
- uses: actions/checkout@v4
with:
fetch-depth: 0 # pull full history for page lastmod by git commit date
submodules: recursive
# - name: Patch baseURL (staging only)
# if: github.ref_name != 'master'
# run: |
# sed -i 's#baseurl = "https://cryptoparty-hamburg.de"#baseurl = "https://staging.cryptoparty-hamburg.de/pr${{ github.event.pull_request.number }}/"#' config.toml
- name: Build website (prod)
# if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref_name == 'master'
run: |
hugo
# - name: Build website (staging)
# if: github.ref_name != 'master'
# run: |
# hugo --buildFuture --buildDrafts
- name: Deploy - Prepare keys
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'schedule'
run: |
echo "${{ secrets.SSH_DEPLOY_KEY }}" > deploykey.priv
chmod 400 deploykey.priv
echo "${{ secrets.SSH_KNOWN_HOSTS_FILE }}" > ./known_hosts
# - name: Deploy - Upload PR to staging
# if: github.event_name == 'pull_request'
# run: |
# echo "Deploying to staging.cryptoparty-hamburg.de/pr${{ github.event.pull_request.number }}"
# rsync -v -r --delete -e "ssh -i deploykey.priv -o 'UserKnownHostsFile ./known_hosts'" public/ cryptoparty-website-deploy@public-web-static-intern.hamburg.ccc.de:/var/www/staging.cryptoparty-hamburg.de/pr${{ github.event.pull_request.number }}/
# - name: Deploy - Add comment to PR with staging URL
# if: github.event_name == 'pull_request' && github.event.action == 'opened'
# run: |
# curl \
# -X POST \
# ${{ github.event.pull_request.base.repo.url }}/issues/${{ github.event.pull_request.number }}/comments \
# -H "Content-Type: application/json" \
# -H "Authorization: token $GITHUB_TOKEN" \
# --data '{ "body": "You can view your changes at https://staging.cryptoparty-hamburg.de/pr${{ github.event.pull_request.number }}/" }'
- name: Deploy - Upload to prod
# if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref_name == 'master'
run: |
rsync -v -r --delete -e "ssh -i deploykey.priv -o 'UserKnownHostsFile ./known_hosts'" public/ cryptoparty-website-deploy@public-web-static-intern.hamburg.ccc.de:/var/www/cryptoparty-hamburg.de/
- uses: actions/upload-artifact@v3
if: github.event_name == 'pull_request'
with:
name: website-build
path: public/