From d9b20dcd25f09ed8b9528ef0cbbbd5b4de9d4f26 Mon Sep 17 00:00:00 2001 From: jtbx Date: Tue, 16 Jan 2024 21:09:24 +0100 Subject: [PATCH 1/2] CI: Deploy on push on main and schedule, build on PR --- .forgejo/workflows/deploy.yaml | 63 ++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 .forgejo/workflows/deploy.yaml diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml new file mode 100644 index 0000000..31ed7d9 --- /dev/null +++ b/.forgejo/workflows/deploy.yaml @@ -0,0 +1,63 @@ +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: | + echo "Run triggered by ${{ gitea.event_name }} 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 + + - name: Patch baseURL (staging only) + if: github.ref_name != 'main' + run: | + sed -i "s#baseURL = 'https://hamburg.ccc.de/'#baseURL = 'https://next.hamburg.ccc.de/'#" hugo.toml + - name: Build website + run: | + ./fetch-calendar.sh + hugo + + - name: Deploy - Prepare keys + if: github.event_name == 'push' + run: | + echo "${{ secrets.SSH_DEPLOY_KEY }}" > deploykey.priv + chmod 400 deploykey.priv + echo "${{ secrets.SSH_KNOWN_HOSTS_FILE }}" > ./known_hosts + + - name: Deploy - Upload to staging + if: github.event_name == 'push' && 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/next.hamburg.ccc.de/ + - name: Deploy - Upload to prod + if: github.event_name == 'push' && 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/ From 75cee47ab7f6bf3462ed23d7c1804705c0b045db Mon Sep 17 00:00:00 2001 From: jtbx Date: Sat, 20 Jan 2024 15:07:28 +0100 Subject: [PATCH 2/2] CI: Deploy PRs to staging --- .forgejo/workflows/cleanup.yaml | 19 +++++++++++++++++++ .forgejo/workflows/deploy.yaml | 11 ++++++----- 2 files changed, 25 insertions(+), 5 deletions(-) create mode 100644 .forgejo/workflows/cleanup.yaml diff --git a/.forgejo/workflows/cleanup.yaml b/.forgejo/workflows/cleanup.yaml new file mode 100644 index 0000000..c81e3da --- /dev/null +++ b/.forgejo/workflows/cleanup.yaml @@ -0,0 +1,19 @@ +on: + pull_request: + pull_request_target: + - closed + +jobs: + cleanup-staging: + runs-on: docker + container: + image: code.forgejo.org/oci/node:20-bookworm + steps: + - name: Pipeline info PR + run: | + echo "PR#${{ github.event.pull_request.number }} ${{ github.event.action }}" + + - name: Deploy - Remove PR from staging + if: github.event.action == 'closed' + run: | + ssh -i deploykey.priv -o 'UserKnownHostsFile ./known_hosts' ccchh-website-deploy@public-web-static-intern.hamburg.ccc.de -t "rm -r /var/www/next.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/" diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index 31ed7d9..97dde69 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -34,23 +34,24 @@ jobs: - name: Patch baseURL (staging only) if: github.ref_name != 'main' run: | - sed -i "s#baseURL = 'https://hamburg.ccc.de/'#baseURL = 'https://next.hamburg.ccc.de/'#" hugo.toml + sed -i "s#baseURL = 'https://hamburg.ccc.de/'#baseURL = 'https://staging.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/'#" hugo.toml - name: Build website run: | ./fetch-calendar.sh hugo - name: Deploy - Prepare keys - if: github.event_name == 'push' + if: github.event_name == 'push' || github.event_name == 'pull_request' run: | echo "${{ secrets.SSH_DEPLOY_KEY }}" > deploykey.priv chmod 400 deploykey.priv echo "${{ secrets.SSH_KNOWN_HOSTS_FILE }}" > ./known_hosts - - name: Deploy - Upload to staging - if: github.event_name == 'push' && github.ref_name != 'main' + - name: Deploy - Upload PR to staging + if: github.event_name == 'pull_request' 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/next.hamburg.ccc.de/ + 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 - Upload to prod if: github.event_name == 'push' && github.ref_name == 'main' run: |