Compare commits

..

2 commits

Author SHA1 Message Date
66b70524b4
update theme to make website build
All checks were successful
/ build (pull_request) Successful in 1m58s
2025-07-23 20:27:03 +02:00
332f6de656
introduce Forgejo Actions CI for deploying website and staging envs 2025-07-23 20:26:59 +02:00

View file

@ -32,20 +32,20 @@ jobs:
fetch-depth: 0 # pull full history for page lastmod by git commit date fetch-depth: 0 # pull full history for page lastmod by git commit date
submodules: recursive submodules: recursive
# - name: Patch baseURL (staging only) - name: Patch baseURL (staging only)
# if: github.ref_name != 'master' if: github.ref_name != 'master'
# run: | run: |
# sed -i 's#baseurl = "https://cryptoparty-hamburg.de"#baseurl = "https://staging.cryptoparty-hamburg.de/pr${{ github.event.pull_request.number }}/"#' config.toml 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) - name: Build website (prod)
# if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref_name == 'master' if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref_name == 'master'
run: | run: |
hugo hugo
# - name: Build website (staging) - name: Build website (staging)
# if: github.ref_name != 'master' if: github.ref_name != 'master'
# run: | run: |
# hugo --buildFuture --buildDrafts hugo --buildFuture --buildDrafts
- name: Deploy - Prepare keys - name: Deploy - Prepare keys
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'schedule' if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'schedule'
@ -54,23 +54,24 @@ jobs:
chmod 400 deploykey.priv chmod 400 deploykey.priv
echo "${{ secrets.SSH_KNOWN_HOSTS_FILE }}" > ./known_hosts echo "${{ secrets.SSH_KNOWN_HOSTS_FILE }}" > ./known_hosts
# - name: Deploy - Upload PR to staging - name: Deploy - Upload PR to staging
# if: github.event_name == 'pull_request' if: github.event_name == 'pull_request'
# run: | run: |
# echo "Deploying to staging.cryptoparty-hamburg.de/pr${{ github.event.pull_request.number }}" 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 }}/ 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' - name: Deploy - Add comment to PR with staging URL
# run: | if: github.event_name == 'pull_request' && github.event.action == 'opened'
# curl \ run: |
# -X POST \ curl \
# ${{ github.event.pull_request.base.repo.url }}/issues/${{ github.event.pull_request.number }}/comments \ -X POST \
# -H "Content-Type: application/json" \ ${{ github.event.pull_request.base.repo.url }}/issues/${{ github.event.pull_request.number }}/comments \
# -H "Authorization: token $GITHUB_TOKEN" \ -H "Content-Type: application/json" \
# --data '{ "body": "You can view your changes at https://staging.cryptoparty-hamburg.de/pr${{ github.event.pull_request.number }}/" }' -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 - name: Deploy - Upload to prod
# if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref_name == 'master' if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref_name == 'master'
run: | 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/ 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/