ebury nicer column #125
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Auto Deploy to WWW | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - hackshell.sh | |
| # - tools/hackshell.sh | |
| # - tools/** | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Deploy to WWW | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Deploy whatserver & hackshell to WWW | |
| env: | |
| SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | |
| run: | | |
| cat hackshell.sh| sed 's|^_HSURLORIGIN=$|_HSURLORIGIN="https://thc.org/hs"|1' >/tmp/hackshell.sh | |
| 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/hackshell.sh hs || { cat /tmp/hackshell.sh >hs; is_updated=1; } | |
| [ -n "$is_updated" ] && { | |
| git config --local user.name "GitHub Action" | |
| git config --local user.email "root@proton.thc.org" | |
| git add hs && git commit -m "hackshell" && git push | |
| } |