Skip to content

Commit

Permalink
Initial Release
Browse files Browse the repository at this point in the history
  • Loading branch information
NostraThomas99 committed Apr 7, 2024
1 parent 914944b commit 0deab1f
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 92 deletions.
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

47 changes: 47 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Publish
on:
push:
tags:
- '*.*.*.*'
jobs:
Build:
permissions:
contents: write
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: true

- name: Get Environment Variables
run: |
$tag = "${{ github.ref }}" -replace 'refs/tags/', ''
"tag=$tag" | Out-File -Append -FilePath $Env:GITHUB_ENV
- name: Set up .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x

- name: Download Dalamud Latest
run: |
Invoke-WebRequest -Uri https://goatcorp.github.io/dalamud-distrib/latest.zip -OutFile latest.zip
Expand-Archive -Force latest.zip "$env:AppData\XIVLauncher\addon\Hooks\dev"
- name: Restore Nuget Packages
run: dotnet restore ActionTimelineEx/ActionTimelineEx.csproj

- name: Build Plugin
run: dotnet build --no-restore -c Release ActionTimelineEx/ActionTimelineEx.csproj -p:AssemblyVersion=${{ env.tag }} -p:FileVersion=${{ env.tag }} -p:InformationalVersion=${{ env.tag }} --output .\build

- name: Zip Plugin
run: Compress-Archive -Path .\build\* -DestinationPath .\build\ActionTimelineReborn.zip

- name: Publish Plugin
uses: softprops/action-gh-release@v2
with:
files: ./build/ActionTimelineReborn.zip
token: ${{ secrets.GITHUB_TOKEN }}

79 changes: 0 additions & 79 deletions .github/workflows/release-please.yml

This file was deleted.

10 changes: 5 additions & 5 deletions ActionTimelineEx/ActionTimelineEx.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"Author": "Tischel, ArchiTed",
"Name": "ActionTimelineEx",
"InternalName": "ActionTimelineEx",
"Author": "The Combat Reborn Team",
"Name": "ActionTimeline Reborn",
"InternalName": "ActionTimelineReborn",
"AssemblyVersion": "1.3.6.0",
"Description": "Configurable timeline display of all the actions you use.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/ArchiDog1998/ActionTimelineEx",
"RepoUrl": "https://github.com/FFXIV-CombatReborn/ActionTimelineReborn",
"Tags": [
"UI"
],
Expand All @@ -18,7 +18,7 @@
"CanUnloadAsync": false,
"LoadPriority": 0,
"ImageUrls": [
"https://raw.githubusercontent.com/ArchiDog1998/ActionTimelineEx/main/Images/example.gif"
"https://raw.githubusercontent.com/FFXIV-CombatReborn/ActionTimelineReborn/main/Images/example.gif"
],
"IconUrl": "https://xivapi.com/i/000000/000073_hr1.png",
"Punchline": "Show your actions in real-time.",
Expand Down
15 changes: 8 additions & 7 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"Author": "Tischel, ArchiTed",
"Name": "ActionTimelineEx",
"InternalName": "ActionTimelineEx",
"Author": "The Combat Reborn Team",
"Name": "ActionTimeline Reborn",
"InternalName": "ActionTimelineReborn",
"AssemblyVersion": "1.3.6.0",
"Description": "Configurable timeline display of all the actions you use.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/FFXIV-CombatReborn/ActionTimelineReborn",
"Tags": [
"UI"
],
Expand All @@ -15,11 +17,10 @@
"LoadSync": false,
"CanUnloadAsync": false,
"LoadPriority": 0,
"IsTestingExclusive": false,
"ImageUrls": [
"https://raw.githubusercontent.com/FFXIV-CombatReborn/ActionTimelineReborn/main/Images/example.gif"
],
"IconUrl": "https://xivapi.com/i/000000/000073_hr1.png",
"Punchline": "Show your actions in real-time.",
"ImageUrls":[
"https://raw.githubusercontent.com/ArchiDog1998/ActionTimelineEx/main/Images/example.gif"
],
"AcceptsFeedback": true
}

0 comments on commit 0deab1f

Please sign in to comment.