msanvarov / push-to-discord

Github action that pushes a file to Discord channel.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Upload to Discord

Usage

on: push
name: Main workflow
jobs:
  github-action:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - name: Send file README.md to discord channel
      uses: sinshutu/upload-to-discord@master
      env:
        DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
      with:
        args: README.md

Requirements

You must pass at least one argument, the path to the file you want to attach. You must also include the DISCORD_WEBHOOK secret, otherwise uploading the file will not work.

    - name: Send file README.md to discord channel
      uses: sinshutu/upload-to-discord@master
      env:
        DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
      with:
        args: README.md

About

Github action that pushes a file to Discord channel.

License:MIT License


Languages

Language:Shell 55.4%Language:Dockerfile 44.6%