Skip to content

Commit

Permalink
web UI created file in the wrong place (epic)
Browse files Browse the repository at this point in the history
  • Loading branch information
Penguin-Spy committed Dec 21, 2022
1 parent acd5e55 commit 549099c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
3 changes: 3 additions & 0 deletions release.yml → .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ this was created for personal use because:
1. [Create a copy of this template](https://github.com/penguin-spy/replugged-plugin-template/generate)
2. Clone your new repository and cd into it
3. Install dependencies: `pnpm i`
4. Edit the `manifest.json` and change at least the `"id"` to be something different.
4. Edit the `manifest.json` and change at least the `"id"` to be something different!
4. Install the plugin into Replugged: `pnpm run update`
5. Reload Discord to load the plugin

Expand All @@ -37,4 +37,13 @@ Official Replugged API docs: https://docs.replugged.dev/modules.html (have fun)
`pnpm run bundle` will create an `.asar` of the plugin that's ready for distributing via the [#plugin-links](https://discord.com/channels/1000926524452647132/1053466391874900078)
channel, GitHub releases, email, FTP, dial-up modem, or USB drive + carrier pigeon.

github workflow coming soon™
This template includes a GitHub workflow that bundles the plugin and releases the `.asar`.
To trigger it, push a tag with the version number preceded by a v (e.g. v1.0.0):
```
git tag v1.0.0
git push --tags
```

The Replugged updater (coming soon™) will automatically check for updates on the repository specified
in the manifest. Make sure to update it to point to the correct repository!

0 comments on commit 549099c

Please sign in to comment.