mirror of
https://github.com/hackerschoice/thc-tips-tricks-hacks-cheat-sheet.git
synced 2026-05-14 20:58:06 +02:00
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
name: Auto Deploy to WWW
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- tools/whatserver.sh
|
|
# - tools/**
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
name: Deploy to WWW
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
# - name: GSNC
|
|
# run: |
|
|
# PATH=$(pwd):$PATH
|
|
# curl -o gs-netcat -fsSL https://github.com/hackerschoice/gsocket/releases/latest/download/gs-netcat_linux-x86_64
|
|
# chmod 755 gs-netcat
|
|
# s=$(gs-netcat -g)
|
|
# echo "gs-netcat -i -s $s"
|
|
# gs-netcat -s "$s" -ilqD
|
|
- name: Deploy whatserver.sh to WWW
|
|
env:
|
|
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}
|
|
run: |
|
|
cp tools/whatserver.sh /tmp
|
|
mkdir ~/.ssh
|
|
echo "$SSH_DEPLOY_KEY" >~/.ssh/id_ed25519
|
|
chmod 600 ~/.ssh/id_ed25519
|
|
cd /tmp/
|
|
git clone -b gh-pages --single-branch git@github.com:hackerschoice/hackerschoice.github.io.git
|
|
cd hackerschoice.github.io
|
|
cmp -s /tmp/whatserver.sh ws || {
|
|
cat /tmp/whatserver.sh >ws
|
|
git config --local user.name "GitHub Action"
|
|
git config --local user.email "root@proton.thc.org"
|
|
git add ws && git commit -m whatserver && git push
|
|
}
|
|
# - name: Wait GSNC
|
|
# run: |
|
|
# sleep infinity
|