Skip to content

Commit

Permalink
Merge pull request #53 from lucasmetzen/workflow-step-publish-release
Browse files Browse the repository at this point in the history
Add workflow step to publish release to package page
  • Loading branch information
lucasmetzen authored Dec 26, 2024
2 parents de74e85 + 86f3330 commit 003daed
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,13 @@ jobs:
artifacts: './module.json, ./module.zip'
tag: ${{ github.event.release.tag_name }}
body: ${{ github.event.release.body }}

# Publish the release to the Foundry VTT package page and trigger Discord bot to announce it in #package-release.
- name: Publish Module to Foundry VTT Website
id: publish-to-foundry-website
uses: cs96and/FoundryVTT-release-package@v1
with:
package-token: ${{ secrets.PACKAGE_TOKEN }}
manifest-url: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.json
# TODO: Remove dry-run setting after having confirmed it works the first time:
dry-run: true
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ If you answered at least one of those questions with "Yes", then LAME Messenger
## ✨ Features

- Dedicated window for sending and receiving whispers with chat history
- Send a message to multiple recipients at the same time
- Send a message to multiple recipients at the same time:
![message sent to two users](https://github.com/lucasmetzen/foundryvtt-messenger/blob/main/docs/README-message-sent-to-two-users.webp?raw=true)
- Shows a user's avatar or associated actor's image in addition to their name if set in world's user configuration
- Shows a user's avatar or associated actor's image in addition to their name if set in world's user configuration:
![message sent to two users](https://github.com/lucasmetzen/foundryvtt-messenger/blob/main/docs/README-user-avatar.webp?raw=true)
- No need to type `/whisper` command and recipient's username
- Visual and auditory notification for incoming whisper (optional)
Expand All @@ -33,19 +33,19 @@ Note: The module is not a replacement for Foundry VTT's built-in whisper messagi

## ⚡️ Installation

This module can be installed automatically from the Foundry Virtual Tabletop module browser, or by using the following module manifest url:
This module can be installed automatically from the Foundry Virtual Tabletop module browser, or by using the following module manifest URL:
https://github.com/lucasmetzen/foundryvtt-messenger/releases/latest/download/module.json


## 🎨 Configurable options

- Show notification message for incoming whisper
- Notification message is displayed until dismissed
- Show currently disconnected users in user selection
- Show currently disconnected users in user selection:
![disconnected users shown](https://github.com/lucasmetzen/foundryvtt-messenger/blob/main/docs/README-disconnected-users-shown.webp?raw=true)
- Show button in chat sidebar (next to the roll type selector) to open LAME messenger window (shown by default)
- Show button in chat sidebar (next to the roll type selector) to open LAME messenger window (shown by default):
![button in chat sidebar](https://github.com/lucasmetzen/foundryvtt-messenger/blob/main/docs/README-button-in-chat-sidebar.webp?raw=true)
- Show button in scene controls toolbar (left side of screen) to open LAME messenger window
- Show button in scene controls toolbar (left side of screen) to open LAME messenger window:
![button in scene controls toolbar](https://github.com/lucasmetzen/foundryvtt-messenger/blob/main/docs/README-button-in-scene-controls-toolbar.webp?raw=true)


Expand Down

0 comments on commit 003daed

Please sign in to comment.