All checks were successful
/ build (push) Successful in 15s
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://github.com/actions/checkout) | action | major | `v4` → `v6` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v6`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v602) [Compare Source](https://github.com/actions/checkout/compare/v5...v6) - Fix tag handling: preserve annotations and explicit fetch-tags by [@​ericsciple](https://github.com/ericsciple) in [#​2356](https://github.com/actions/checkout/pull/2356) ### [`v5`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v501) [Compare Source](https://github.com/actions/checkout/compare/v4...v5) - Port v6 cleanup to v5 by [@​ericsciple](https://github.com/ericsciple) in [#​2301](https://github.com/actions/checkout/pull/2301) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41LjMiLCJ1cGRhdGVkSW5WZXIiOiI0My41LjMiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=--> Reviewed-on: #118 Co-authored-by: Renovate <no-reply@git.hamburg.ccc.de> Co-committed-by: Renovate <no-reply@git.hamburg.ccc.de>
81 lines
3.1 KiB
YAML
81 lines
3.1 KiB
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
schedule:
|
|
- cron: "0,20,40 * * * *"
|
|
|
|
env:
|
|
TZ: Europe/Berlin
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
container:
|
|
image: hugomods/hugo:exts-0.148.1
|
|
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@v6
|
|
with:
|
|
fetch-depth: 0 # pull full history for page lastmod by git commit date
|
|
|
|
- name: Build website - prod
|
|
run: |
|
|
./fetch-calendar.sh
|
|
hugo
|
|
|
|
- name: Build website - staging
|
|
if: github.ref_name != 'main'
|
|
run: |
|
|
sed -i "s#baseURL = 'https://hamburg.ccc.de/'#baseURL = 'https://staging.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/'#" hugo.toml
|
|
sed -i "s#index = true#index = false#" hugo.toml
|
|
sed -i "s#follow = true#follow = false#" hugo.toml
|
|
./fetch-calendar.sh
|
|
hugo --buildFuture
|
|
|
|
- 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.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 }}/
|
|
- 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 }}/" }'
|
|
|
|
- name: Deploy - Upload to prod
|
|
if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref_name == 'main'
|
|
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/
|