Skip to content

Commit

Permalink
Don't use STG
Browse files Browse the repository at this point in the history
  • Loading branch information
Critical-Impact committed Sep 26, 2024
1 parent 0ecadda commit 8655af7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,22 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer

- name: Download Dalamud
run: |
mkdir -p ${{ env.DALAMUD_HOME }}
curl -L https://goatcorp.github.io/dalamud-distrib/stg/latest.zip -o latest.zip
curl -L https://goatcorp.github.io/dalamud-distrib/latest.zip -o latest.zip
unzip latest.zip -d ${{ env.DALAMUD_HOME }}
# Install the .NET SDK indicated in the global.json file
- name: Setup .NET
uses: actions/setup-dotnet@v4

# Create the NuGet package in the folder from the environment variable NuGetDirectory
- run: |
$env:DALAMUD_HOME = "${{ env.DALAMUD_HOME }}"
dotnet pack --configuration Release --output ${{ env.NuGetDirectory }}
# Publish the NuGet package as an artifact, so they can be used in the following jobs
- uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Download Dalamud
run: |
mkdir -p ${{ env.DALAMUD_HOME }}
curl -L https://goatcorp.github.io/dalamud-distrib/stg/latest.zip -o latest.zip
curl -L https://goatcorp.github.io/dalamud-distrib/latest.zip -o latest.zip
unzip latest.zip -d ${{ env.DALAMUD_HOME }}
# Install the .NET SDK indicated in the global.json file
Expand Down

0 comments on commit 8655af7

Please sign in to comment.