Skip to content

Commit

Permalink
refactor: change dalamud distrib to env var
Browse files Browse the repository at this point in the history
  • Loading branch information
kalilistic committed Sep 27, 2023
1 parent 2d704ae commit 15a84d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
- name: Download Dalamud
run: |
curl https://goatcorp.github.io/dalamud-distrib/latest.zip --output latest.zip
curl "${{env.DALAMUD_DISTRIB}}" --output latest.zip
mkdir -p ~/Dalamud
unzip latest.zip -d ~/Dalamud
- name: Build
Expand All @@ -28,4 +28,4 @@ jobs:
- name: Pack
run: dotnet pack --configuration Release /p:Version=${VERSION} --no-build --output .
- name: Push
run: dotnet nuget push Dalamud.Loc.${VERSION}.nupkg --skip-duplicate --no-symbols --source https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}}
run: dotnet nuget push Dalamud.Loc.${VERSION}.nupkg --skip-duplicate --no-symbols --source https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}}

0 comments on commit 15a84d7

Please sign in to comment.