-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4efc8ac
commit 280ead8
Showing
5 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Rotation bug report | ||
about: Unexpected rotation behavior, crash, error in logs, etc. | ||
title: "[BUG] L100 JobNameHere: Issue Summary Here" | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Bug description** | ||
e.g. "Reaper using Enshroud too early before raid buffs" | ||
|
||
**Replay info** - only one choice is needed | ||
- [ ] I have a(n anonymized) video recording of this interaction | ||
- [ ] I have a replay file and I will DM it to you upon request (or just post it here if I don't care about privacy) | ||
- [ ] I can attach my `/xllog` from when the issue occurred | ||
- [ ] I have a screenshot of or link to xivanalysis |
10 changes: 10 additions & 0 deletions
10
.github/ISSUE_TEMPLATE/something-that-isn-t-a-rotation-bug.md
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: Something that isn't a rotation bug | ||
about: Not a rotation bug | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- wip | ||
|
||
jobs: | ||
Build: | ||
runs-on: ubuntu-latest | ||
env: | ||
DALAMUD_HOME: /tmp/dalamud | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Short ref | ||
id: short_ref | ||
run: echo "short_ref=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | ||
|
||
- name: Set up .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Download Dalamud Latest | ||
run: | | ||
wget https://goatcorp.github.io/dalamud-distrib/stg/latest.zip -O ${{ env.DALAMUD_HOME }}.zip | ||
unzip ${{ env.DALAMUD_HOME }}.zip -d ${{ env.DALAMUD_HOME }} | ||
- name: Restore Project | ||
run: dotnet restore | ||
|
||
- name: Build Project | ||
run: dotnet build --configuration Release BossMod/BossMod.csproj | ||
|
||
- name: Publish | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
artifacts: BossMod/bin/Release/BossMod/latest.zip | ||
prerelease: true | ||
tag: "wip-${{ steps.short_ref.outputs.short_ref }}" |
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
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