Skip to content

feat: add help topic on arm macos gatekeeper install error #59

feat: add help topic on arm macos gatekeeper install error

feat: add help topic on arm macos gatekeeper install error #59

Workflow file for this run

name: Deploy Bot
# Only runs after PRs have been merged into master
on:
workflow_dispatch:
push:
branches: ["master"]
jobs:
deploy:
name: Deploy Bot
runs-on: 'ubuntu-latest'
environment: production
steps:
- name: SSH Remote Commands
uses: appleboy/[email protected]
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }}
script: cd /srv/crowbartools-discord-bot/ && git reset --hard origin/master && git pull && npm install && npm run build && pm2 restart discord-bot
- name: Discord Webhook Action
uses: tsickert/[email protected]
if: ${{ success() }}
with:
webhook-url: ${{ secrets.DISCORD_GIT_WEBHOOK_URL }}
embed-title: "[crowbartools/crowbartools-discord-bot] Deployed to Production"
embed-url: "https://github.com/crowbartools/crowbartools-discord-bot/deployments"
embed-color: 5763719
- name: Discord Webhook Action
uses: tsickert/[email protected]
if: ${{ failure() }}
with:
webhook-url: ${{ secrets.DISCORD_GIT_WEBHOOK_URL }}
embed-title: "[crowbartools/crowbartools-discord-bot] Deployment Failed"
embed-url: "https://github.com/crowbartools/crowbartools-discord-bot/deployments"
embed-color: 15548997