this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: use ncat --ssl for IRC deploy notification

The IRC server requires TLS, so plain nc won't work.
Install ncat and use --ssl flag for the connection.

+2 -1
+2 -1
.github/workflows/deploy.yml
··· 49 49 env: 50 50 IRC_PASSWORD: ${{ secrets.IRC_PASSWORD }} 51 51 run: | 52 + sudo apt-get install -y -qq ncat > /dev/null 2>&1 52 53 COMMIT_MSG=$(git log -1 --pretty=%s) 53 54 { 54 55 sleep 1 ··· 62 63 sleep 1 63 64 printf "QUIT :Done\r\n" 64 65 sleep 1 65 - } | nc 72.14.177.235 8080 || true 66 + } | ncat --ssl 72.14.177.235 8080 || true