2024-01-16 21:09:24 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: "0,20,40 * * * *"
|
|
|
|
|
|
|
|
env:
|
|
|
|
TZ: Europe/Berlin
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: docker
|
|
|
|
container:
|
|
|
|
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
|
|
|
|
steps:
|
|
|
|
- name: Pipeline info
|
|
|
|
run: |
|
2024-01-28 13:02:48 +01:00
|
|
|
echo "Run triggered by ${{ github.event_name }} (${{ github.event.action }}) on ref ${{ github.ref_name }}"
|
2024-01-16 21:09:24 +01:00
|
|
|
|
|
|
|
- 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
|
2024-02-01 20:15:50 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 0 # pull full history for page lastmod by git commit date
|
2024-01-16 21:09:24 +01:00
|
|
|
|
|
|
|
- name: Patch baseURL (staging only)
|
|
|
|
if: github.ref_name != 'main'
|
|
|
|
run: |
|
2024-01-20 15:07:28 +01:00
|
|
|
sed -i "s#baseURL = 'https://hamburg.ccc.de/'#baseURL = 'https://staging.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/'#" hugo.toml
|
2024-01-22 22:33:14 +01:00
|
|
|
sed -i "s#index = true#index = false#" hugo.toml
|
|
|
|
sed -i "s#follow = true#follow = false#" hugo.toml
|
2024-01-16 21:09:24 +01:00
|
|
|
- name: Build website
|
|
|
|
run: |
|
|
|
|
./fetch-calendar.sh
|
|
|
|
hugo
|
|
|
|
|
|
|
|
- name: Deploy - Prepare keys
|
2024-02-01 20:11:25 +01:00
|
|
|
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'schedule'
|
2024-01-16 21:09:24 +01:00
|
|
|
run: |
|
|
|
|
echo "${{ secrets.SSH_DEPLOY_KEY }}" > deploykey.priv
|
|
|
|
chmod 400 deploykey.priv
|
|
|
|
echo "${{ secrets.SSH_KNOWN_HOSTS_FILE }}" > ./known_hosts
|
|
|
|
|
2024-01-20 15:07:28 +01:00
|
|
|
- name: Deploy - Upload PR to staging
|
|
|
|
if: github.event_name == 'pull_request'
|
2024-01-16 21:09:24 +01:00
|
|
|
run: |
|
2024-01-20 15:07:28 +01:00
|
|
|
echo "Deploying to staging.hamburg.ccc.de/pr${{ github.event.pull_request.number }}"
|
|
|
|
rsync -v -r --delete -e "ssh -i deploykey.priv -o 'UserKnownHostsFile ./known_hosts'" public/ ccchh-website-deploy@public-web-static-intern.hamburg.ccc.de:/var/www/staging.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/
|
2024-01-28 13:02:48 +01:00
|
|
|
- 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.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/" }'
|
|
|
|
|
2024-01-16 21:09:24 +01:00
|
|
|
- name: Deploy - Upload to prod
|
2024-02-01 20:11:25 +01:00
|
|
|
if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref_name == 'main'
|
2024-01-16 21:09:24 +01:00
|
|
|
run: |
|
|
|
|
rsync -v -r --delete -e "ssh -i deploykey.priv -o 'UserKnownHostsFile ./known_hosts'" public/ ccchh-website-deploy@public-web-static-intern.hamburg.ccc.de:/var/www/hamburg.ccc.de/
|
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
if: github.event_name == 'pull_request'
|
|
|
|
with:
|
|
|
|
name: website-build
|
|
|
|
path: public/
|