Publish #1
Workflow file for this run
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
name: Publish | |
on: | |
release: | |
types: [released, prereleased] | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch Sources | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
filter: tree:0 | |
- name: Setup .NET Env | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0.203" | |
- name: Restore Solution | |
run: | | |
dotnet restore | |
dotnet tool restore | |
- name: Pack Solution | |
run: | | |
dotnet pack --configuration Release | |
- name: Upload Thunderstore Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: thunderstore-build | |
path: MyceliumNetworkingForCW/dist/*.zip | |
- name: Upload NuPkg Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nupkg-build | |
path: MyceliumNetworkingForCW/bin/Release/*.nupkg | |
- name: Build Debug | |
run: | | |
dotnet build --configuration Debug | |
- name: Rename Debug Build | |
run: | | |
mv "./MyceliumNetworkingForCW/bin/Debug/netstandard2.1/MyceliumNetworkingForCW.dll" "./MyceliumNetworkingForCW/bin/Debug/netstandard2.1/MyceliumNetworkingForCW-Debug.dll" | |
- name: Upload Debug Dll | |
uses: actions/upload-artifact@v4 | |
with: | |
name: debug-build | |
path: MyceliumNetworkingForCW/bin/Debug/netstandard2.1/MyceliumNetworkingForCW-Debug.dll | |
upload-release-artifacts: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download all Artifacts | |
uses: actions/download-artifact@v4 | |
- name: Upload artifacts to Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh release upload ${{ github.event.release.tag_name }} thunderstore-build/*.zip nupkg-build/*.nupkg debug-build/*.dll | |
deploy-nuget: | |
name: Deploy to NuGet | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch Sources | |
uses: actions/checkout@v4 | |
- name: Download nupkg artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: nupkg-build | |
path: ./MyceliumNetworkingForCW/bin/Release | |
- name: Setup .NET environment | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "8.0.203" | |
- name: Publish to NuGet.org | |
run: | | |
dotnet nuget push ./MyceliumNetworkingForCW/bin/Release/*.nupkg --api-key ${{ secrets.NUGET_TOKEN }} --source https://api.nuget.org/v3/index.json | |
deploy-thunderstore: | |
if: ${{ github.event.release.prerelease == false }} | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download Thunderstore Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: thunderstore-build | |
path: MyceliumNetworkingForCW/dist/*.zip | |
- name: Restore Tools | |
run: | | |
dotnet tool restore | |
- name: Publishing to Thunderstore | |
env: | |
TCLI_AUTH_TOKEN: ${{ secrets.THUNDERSTORE_API_TOKEN }} | |
run: | | |
dotnet tcli publish --config-path MyceliumNetworking/ts-assets/thunderstore.toml --file MyceliumNetworking/dist/*.zip |