Improved PDF handling. #23
Workflow file for this run
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: Discord Message Notify | |
on: | |
push: | |
tags: 'v*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get tag | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
- name: Discord Message Notify | |
uses: appleboy/discord-action@0.0.3 | |
with: | |
webhook_id: ${{ secrets.WEBHOOK_ID }} | |
webhook_token: ${{ secrets.WEBHOOK_TOKEN }} | |
color: "#48f442" | |
username: "GitHub Bot" | |
args: | | |
${{steps.tag.outputs.tag}} will be released in a few days. | |
https://github.com/kurema/BookViewerApp3/releases/tag/${{steps.tag.outputs.tag}} |