Dependencies: Update discord.js to 14.16.3 #23
This file contains 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: Bot Deployment | |
on: | |
# Trigger the workflow every time a push is made to 'master' | |
push: | |
branches: [master] | |
# Allows you to run this workflow manually from the Actions tab on GitHub. | |
workflow_dispatch: | |
jobs: | |
deploy: | |
name: Deploy to Production | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Invoke deployment hook | |
uses: distributhor/workflow-webhook@v3 | |
with: | |
webhook_url: ${{ secrets.DEPLOY_WEBHOOK_URL }} | |
webhook_secret: ${{ secrets.DEPLOY_WEBHOOK_SECRET }} |