Compare commits
No commits in common. "763feb743306b1a4b3a1e5166083fe8bf52aa14d" and "6fa3a1b99327ee06e3c9e49a44b829bc3d28182f" have entirely different histories.
763feb7433
...
6fa3a1b993
1 changed files with 20 additions and 20 deletions
|
@ -47,27 +47,27 @@ jobs:
|
||||||
./fetch-calendar.sh
|
./fetch-calendar.sh
|
||||||
hugo --buildFuture
|
hugo --buildFuture
|
||||||
|
|
||||||
# - name: Deploy - Prepare keys
|
- name: Deploy - Prepare keys
|
||||||
# if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'schedule'
|
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'schedule'
|
||||||
# run: |
|
run: |
|
||||||
# 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: 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.hamburg.ccc.de/pr${{ github.event.pull_request.number }}"
|
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 }}/
|
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
|
- 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'
|
||||||
# run: |
|
run: |
|
||||||
# curl \
|
curl \
|
||||||
# -X POST \
|
-X POST \
|
||||||
# ${{ 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.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/" }'
|
--data '{ "body": "You can view your changes at https://staging.hamburg.ccc.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 == 'main'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue