diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index 94f2f0d..30b265e 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -34,12 +34,12 @@ jobs: - name: Patch baseURL (for now) run: | - sed -i 's#baseurl = "https://crytoparty-hamburg.de"#baseurl = "https://cryptoparty.hamburg.ccc.de"#' config.toml + sed -i 's#baseurl = "https://cryptoparty-hamburg.de"#baseurl = "https://cryptoparty.hamburg.ccc.de"#' config.toml - name: Patch baseURL (staging only) if: github.ref_name != 'master' run: | - sed -i 's#baseurl = "https://crytoparty.hamburg.ccc.de.de"#baseurl = "https://staging.cryptoparty.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/"#' config.toml + sed -i 's#baseurl = "https://cryptoparty.hamburg.ccc.de.de"#baseurl = "https://staging.cryptoparty.hamburg.ccc.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'