https://github.com/redstrate/build-dalamud-plugin
GitHub & Forgejo action to build Dalamud plugins
https://github.com/redstrate/build-dalamud-plugin
Last synced: 4 months ago
JSON representation
GitHub & Forgejo action to build Dalamud plugins
- Host: GitHub
- URL: https://github.com/redstrate/build-dalamud-plugin
- Owner: redstrate
- License: mit
- Created: 2025-08-10T13:55:18.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-10T14:45:48.000Z (10 months ago)
- Last Synced: 2025-08-10T16:15:33.291Z (10 months ago)
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# build-dalamud-plugin
A simple action for building simple plugins. Can be used on both GitHub and Forgejo.
## Example (GitHub)
Here is the simplest workflow to build a plugin:
```yml
name: Build
on:
push:
pull_request:
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Plugin
uses: redstrate/build-dalamud-plugin@main
```
## Example (Forgejo)
Here is the simplest workflow to build a plugin:
```yml
name: Build
on:
push:
pull_request:
jobs:
build:
name: "Build"
runs-on: docker
container:
image: ghcr.io/catthehacker/ubuntu:act-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build Plugin
uses: https://github.com/redstrate/build-dalamud-plugin@main
```
Notice that the `uses` directive changed (because your instance is not on GitHub's domain) and you need to explicitly specify a container image. I chose that specific Ubuntu image because it has `node` and `git` pre-installed.