Compare commits
2 commits
7fd7df051c
...
e2d221202e
| Author | SHA1 | Date | |
|---|---|---|---|
|
e2d221202e |
|||
|
9cf7c5b9c4 |
2 changed files with 11 additions and 13 deletions
|
|
@ -18,6 +18,7 @@ jobs:
|
||||||
echo "${{ secrets.SSH_DEPLOY_KEY }}" > deploykey.priv
|
echo "${{ secrets.SSH_DEPLOY_KEY }}" > deploykey.priv
|
||||||
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: Staging Deployment - Remove PR from staging
|
- name: Staging Deployment - Remove PR from staging
|
||||||
run: |
|
run: |
|
||||||
ssh -i deploykey.priv -o 'UserKnownHostsFile ./known_hosts' cryptoparty-website-deploy@public-web-static-intern.hamburg.ccc.de -t "rm -r /var/www/staging.cryptoparty-hamburg.de/pr${{ github.event.pull_request.number }}/"
|
ssh -i deploykey.priv -o 'UserKnownHostsFile ./known_hosts' cryptoparty-website-deploy@public-web-static-intern.hamburg.ccc.de -t "rm -r /var/www/staging.cryptoparty-hamburg.de/pr${{ github.event.pull_request.number }}/"
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- master
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
@ -32,21 +32,18 @@ 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 (for now)
|
# - name: Patch baseURL (staging only)
|
||||||
run: |
|
# if: github.ref_name != 'master'
|
||||||
sed -i 's#baseurl = "https://cryptoparty-hamburg.de"#baseurl = "https://cryptoparty.hamburg.ccc.de"#' config.toml
|
# run: |
|
||||||
|
# sed -i 's#baseurl = "https://cryptoparty-hamburg.de"#baseurl = "https://staging.cryptoparty-hamburg.de/pr${{ github.event.pull_request.number }}/"#' config.toml
|
||||||
- name: Patch baseURL (staging only)
|
|
||||||
if: github.ref_name != 'main'
|
|
||||||
run: |
|
|
||||||
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)
|
- 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 != 'main'
|
# if: github.ref_name != 'master'
|
||||||
# run: |
|
# run: |
|
||||||
# hugo --buildFuture --buildDrafts
|
# hugo --buildFuture --buildDrafts
|
||||||
|
|
||||||
|
|
@ -60,7 +57,7 @@ jobs:
|
||||||
# - 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.ccc.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
|
# - name: Deploy - Add comment to PR with staging URL
|
||||||
# if: github.event_name == 'pull_request' && github.event.action == 'opened'
|
# if: github.event_name == 'pull_request' && github.event.action == 'opened'
|
||||||
|
|
@ -70,10 +67,10 @@ jobs:
|
||||||
# ${{ github.event.pull_request.base.repo.url }}/issues/${{ github.event.pull_request.number }}/comments \
|
# ${{ github.event.pull_request.base.repo.url }}/issues/${{ github.event.pull_request.number }}/comments \
|
||||||
# -H "Content-Type: application/json" \
|
# -H "Content-Type: application/json" \
|
||||||
# -H "Authorization: token $GITHUB_TOKEN" \
|
# -H "Authorization: token $GITHUB_TOKEN" \
|
||||||
# --data '{ "body": "You can view your changes at https://staging.cryptoparty.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/" }'
|
# --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 == 'main'
|
# 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/
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue