diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4e16e6fe9..259849a19 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,76 +1,76 @@ name: "Build Library" on: push: branches: - main paths-ignore: - "DisCatSharp.Docs/**" - "DisCatSharp.Archive/**" - "DisCatSharp.Tools/**" - "DisCatSharp.Logos/**" - "DisCatSharp.Attributes/**" - "*.md" - "*.json" pull_request: merge_group: workflow_dispatch: env: DOTNET_NOLOGO: true DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_CLI_TELEMETRY_OPTOUT: true DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true jobs: build: timeout-minutes: 15 strategy: matrix: os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} name: Build library steps: - name: Checkout repository uses: actions/checkout@v4 - name: Setup .NET uses: actions/setup-dotnet@v4.0.0 with: dotnet-version: | - 8.0.101 + 8.0.201 7.0.404 - name: Restore dependencies run: | dotnet restore --no-cache -f -v minimal DisCatSharp.sln dotnet restore --no-cache -f -v minimal DisCatSharp.Tools/DisCatSharp.Tools.sln - name: Build library run: dotnet build -c Release -v minimal --no-restore DisCatSharp.sln - name: Build tools run: dotnet build -c Release -v minimal --no-restore DisCatSharp.Tools/DisCatSharp.Tools.sln - name: Test library run: dotnet test -v minimal -c Release --no-restore --no-build DisCatSharp.sln pack: timeout-minutes: 15 runs-on: ubuntu-latest name: "Pack and Artifact" needs: build steps: - name: Checkout repository uses: actions/checkout@v4 - name: Setup .NET uses: actions/setup-dotnet@v4.0.0 with: dotnet-version: | - 8.0.101 + 8.0.201 7.0.404 - name: Restore Packages run: dotnet restore --no-cache -f -v minimal DisCatSharp.sln - name: Build library run: dotnet build -c Release -v minimal --no-restore DisCatSharp.sln - name: Publish library run: dotnet pack -c Release -v minimal --no-build --no-restore --include-symbols --include-source -o ./artifacts DisCatSharp.sln - name: Upload artifacts uses: actions/upload-artifact@v4.3.1 with: name: DisCatSharp path: ./artifacts/ \ No newline at end of file diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 088058a16..e3a123b39 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -1,57 +1,57 @@ name: "CodeQL" on: push: branches: - main paths-ignore: - "DisCatSharp.Docs/**" - "DisCatSharp.Archive/**" - "DisCatSharp.Tools/**" - "DisCatSharp.Logos/**" - "DisCatSharp.Attributes/**" - "*.md" - "*.json" pull_request: branches: - main schedule: - cron: '39 18 * * 3' merge_group: workflow_dispatch: jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: actions: read contents: read security-events: write strategy: fail-fast: false matrix: language: [ 'csharp' ] steps: - name: Checkout repository uses: actions/checkout@v4 - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} - name: Set up dotnet uses: actions/setup-dotnet@v4 with: dotnet-version: | - 8.0.101 + 8.0.201 7.0.404 - name: Restore dependencies run: dotnet restore --no-cache -f -v minimal DisCatSharp.sln - name: Build run: dotnet build -c Release -v minimal --no-restore --no-self-contained DisCatSharp.sln - name: Restore Tools Packages run: dotnet restore --no-cache -f -v minimal DisCatSharp.Tools/DisCatSharp.Tools.sln - name: Build tools run: dotnet build -c Release -v minimal --no-restore DisCatSharp.Tools/DisCatSharp.Tools.sln - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index b4796d4cf..49f7e8290 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -1,116 +1,116 @@ name: "Documentation" on: workflow_dispatch: env: DOTNET_NOLOGO: true DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_CLI_TELEMETRY_OPTOUT: true DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true jobs: build: timeout-minutes: 25 runs-on: ubuntu-latest name: Build documentation steps: - name: Checkout repository uses: actions/checkout@v4 with: token: ${{ secrets.NYUW_TOKEN_GH }} - name: Setup .NET uses: actions/setup-dotnet@v4.0.0 with: dotnet-version: | - 8.0.101 + 8.0.201 7.0.403 - name: Git fetch unshallow run: git fetch --unshallow - name: Install DocFX run: dotnet tool update -g docfx - name: Restore packages run: dotnet restore --no-cache -f -v minimal DisCatSharp.sln - name: Build library run: dotnet build -c Release --no-restore -v minimal -f net8.0 DisCatSharp.sln timeout-minutes: 7 continue-on-error: true #- name: Add Custom Plugins # run: cp -R DisCatSharp.Docs/dcs/plugins/* /home/runner/.dotnet/tools/.store/docfx/2.67.0/docfx/2.67.0/tools/net7.0/any/ - name: Build Docs run: docfx DisCatSharp.Docs/docfx.json - name: Pack Docs shell: pwsh run: ./DisCatSharp.Tools/pack-docs.ps1 -DocsPath "./DisCatSharp.Docs" -OutputPath "./" -PackageName "dcs-docs" - name: Upload packed docs uses: actions/upload-artifact@v4 with: name: dcs-docs.zip path: dcs-docs.zip retention-days: 30 # - name: Force add build files # run: git add DisCatSharp.Docs/obj/.cache/build/* -f # - name: Commit and push changes # uses: EndBug/add-and-commit@main # with: # default_author: user_info # author_name: NyuwBot # author_email: nyuw@aitsys.dev # committer_name: NyuwBot # committer_email: nyuw@aitsys.dev # commit: --signoff # message: '[ci skip] Sync docs changes' # tag_push: '--force' documentation: runs-on: ubuntu-latest name: Upload documentation needs: build steps: - name: Checkout docs repository uses: actions/checkout@v4 with: repository: Aiko-IT-Systems/DisCatSharp.Docs token: ${{ secrets.NYUW_TOKEN_GH }} - name: Purge old docs shell: pwsh run: Get-ChildItem -Exclude .git* | Remove-Item -Recurse -Force - name: Download packed docs uses: actions/download-artifact@v4 with: name: dcs-docs.zip - name: Extract new docs run: unzip dcs-docs.zip -d . - name: Deleze zip run: rm dcs-docs.zip - name: Delete packed docs uses: geekyeggo/delete-artifact@v4 with: token: ${{ secrets.NYUW_TOKEN_GH }} name: dcs-docs.zip - name: Add .htaccess run: rm -f .htaccess && wget https://gist.githubusercontent.com/Lulalaby/8a032d0ddebb9125691094edc67b6593/raw/0c4bf0423cfe334fdd5092b014d2481759dd052a/.htaccess #- name: Add _redirects # run: rm -f _redirects && wget https://gist.githubusercontent.com/Lulalaby/0c784680a855fd161411002e3859b4fd/raw/9708d1acfce3f647cbb8da19c2022a20198979fa/_redirects - name: Set access rights run: sudo chmod 777 -R . - name: Commit and push changes uses: EndBug/add-and-commit@main with: default_author: user_info author_name: NyuwBot author_email: nyuw@aitsys.dev committer_name: NyuwBot committer_email: nyuw@aitsys.dev commit: --signoff message: 'Docs update (https://github.com/${{github.repository}}/commit/${{github.sha}})' publish-backup: runs-on: ubuntu-latest name: Publish documentation on backup server needs: documentation steps: - name: Get SSH Agent uses: webfactory/ssh-agent@v0.9.0 with: ssh-private-key: ${{ secrets.AITSYS_SSH }} - name: Publish on server continue-on-error: true run: ssh -o StrictHostKeyChecking=no -T root@207.180.240.241 -f 'cd /var/www/dcsdocs && git pull -f && service apache2 restart' diff --git a/.github/workflows/documentation_test.yml b/.github/workflows/documentation_test.yml index 7dc945271..6e73af708 100644 --- a/.github/workflows/documentation_test.yml +++ b/.github/workflows/documentation_test.yml @@ -1,105 +1,105 @@ name: "Test Documentation" on: pull_request: merge_group: env: DOTNET_NOLOGO: true DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_CLI_TELEMETRY_OPTOUT: true DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true jobs: build: timeout-minutes: 20 runs-on: ubuntu-latest name: Build documentation steps: - name: Checkout repository uses: actions/checkout@v4 with: token: ${{ secrets.NYUW_TOKEN_GH }} - name: Setup .NET uses: actions/setup-dotnet@v4.0.0 with: dotnet-version: | - 8.0.101 + 8.0.201 7.0.403 - name: Install DocFX run: dotnet tool update -g docfx continue-on-error: true - name: Restore packages run: dotnet restore --no-cache -f -v minimal DisCatSharp.sln - name: Build library run: dotnet build -c Release -v minimal -f net8.0 --no-restore DisCatSharp.sln timeout-minutes: 7 continue-on-error: true #- name: Add Custom Plugins # run: cp -R DisCatSharp.Docs/dcs/plugins/* /home/runner/.dotnet/tools/.store/docfx/2.67.0/docfx/2.67.0/tools/net7.0/any/ - name: Build Docs run: docfx DisCatSharp.Docs/docfx.json - name: Pack Docs shell: pwsh run: ./DisCatSharp.Tools/pack-docs.ps1 -DocsPath "./DisCatSharp.Docs" -OutputPath "./" -PackageName "dcs-docs-preview" - name: Upload packed docs uses: actions/upload-artifact@v4.3.1 with: name: dcs-docs-preview.zip path: dcs-docs-preview.zip retention-days: 2 test_documentation: runs-on: ubuntu-latest name: Test documentation needs: build steps: - name: Dynamically create branch uses: GuillaumeFalourd/create-other-repo-branch-action@v1.5 with: repository_owner: Aiko-IT-Systems repository_name: DisCatSharp.Docs new_branch_name: ${{ github.head_ref }} access_token: ${{ secrets.NYUW_TOKEN_GH }} ignore_branch_exists: true git_user_name: NyuwBot git_user_email: nyuw@aitsys.dev - name: Checkout docs repository uses: actions/checkout@v4 with: repository: Aiko-IT-Systems/DisCatSharp.Docs token: ${{ secrets.NYUW_TOKEN_GH }} ref: ${{ github.head_ref }} - name: Purge old docs shell: pwsh run: Get-ChildItem -Exclude .git* | Remove-Item -Recurse -Force - name: Download packed docs uses: actions/download-artifact@v4 with: name: dcs-docs-preview.zip - name: Extract new docs run: unzip dcs-docs-preview.zip -d . - name: Deleze zip run: rm dcs-docs-preview.zip - name: Add .htaccess run: rm -f .htaccess && wget https://gist.githubusercontent.com/Lulalaby/8a032d0ddebb9125691094edc67b6593/raw/0c4bf0423cfe334fdd5092b014d2481759dd052a/.htaccess #- name: Add _redirects # run: rm -f _redirects && wget https://gist.githubusercontent.com/Lulalaby/0c784680a855fd161411002e3859b4fd/raw/9708d1acfce3f647cbb8da19c2022a20198979fa/_redirects - name: Set access rights run: sudo chmod 777 -R . - name: Commit changes run: | git config user.name NyuwBot git config user.email nyuw@aitsys.dev git add . git commit -m "Test-Docs update (https://github.com/${{github.repository}}/commit/${{github.sha}})" git push -f - name: Add PR Comment if: always() uses: mshick/add-pr-comment@v2 with: refresh-message-position: true message-success: | Documentation test build passed! :tada: Visit the cloudflare action run in https://github.com/Aiko-IT-Systems/DisCatSharp.Docs/commits/${{github.head_ref}} for details :3 ![gif](https://media.tenor.com/3PjRNS8paykAAAAC/pat-pat-head.gif) message-failure: "Documentation test build failed! :x:" diff --git a/.github/workflows/internal-release.yml b/.github/workflows/internal-release.yml index c708cdb05..e6bbc38fe 100644 --- a/.github/workflows/internal-release.yml +++ b/.github/workflows/internal-release.yml @@ -1,70 +1,70 @@ name: "Internal Release" on: workflow_dispatch: merge_group: push: branches-ignore: - main env: DOTNET_NOLOGO: true DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_CLI_TELEMETRY_OPTOUT: true DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true jobs: release: timeout-minutes: 15 runs-on: ubuntu-latest name: Build library and release internally steps: - name: Checkout repository uses: actions/checkout@v4 - name: Setup .NET uses: actions/setup-dotnet@v4.0.0 with: dotnet-version: | - 8.0.101 + 8.0.201 7.0.404 - name: Restore dependencies run: | dotnet restore --no-cache -f -v minimal DisCatSharp.sln dotnet restore --no-cache -f -v minimal DisCatSharp.Tools/DisCatSharp.Tools.sln - name: Set outputs id: vars run: echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT - name: Build library as pre-release shell: pwsh run: ./DisCatSharp.Tools/rebuild-lib.ps1 -ArtifactLocation ./dcs-artifacts -Configuration Release -VersionSuffix ${{ steps.vars.outputs.sha }} env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} # - name: Build tools as pre-release # shell: pwsh # run: ./DisCatSharp.Tools/rebuild-tools.ps1 -ArtifactLocation ./dcs-tools-artifacts -Configuration Release -VersionSuffix ${{ steps.vars.outputs.sha }} - name: Build attributes as pre-release shell: pwsh run: ./DisCatSharp.Tools/rebuild-attributes.ps1 -ArtifactLocation ./dcs-attributes-artifacts -Configuration Release -VersionSuffix ${{ steps.vars.outputs.sha }} - name: Remove invalid packages run: rm *.symbols.* working-directory: ./dcs-artifacts - name: Remove symbol packages run: rm *.snupkg working-directory: ./dcs-artifacts # - name: Remove symbol packages for tools # run: rm *.snupkg # working-directory: ./dcs-tools-artifacts - name: Remove symbol packages for attributes run: rm *.snupkg working-directory: ./dcs-attributes-artifacts - name: Add AITSYS Internal NuGet source run: dotnet nuget add source --name aitsys https://registry.aitsys-infra.tools/nuget/aitsys/index.json --username bytesafe --password ${{ secrets.BYTESAFE }} --store-password-in-clear-text - name: Publish to library to AITSYS Internal Registry run: dotnet nuget push --source aitsys -k ${{ secrets.BYTESAFE }} * working-directory: ./dcs-artifacts # - name: Publish to tools to AITSYS Internal Registry # run: dotnet nuget push --source aitsys -k ${{ secrets.BYTESAFE }} * # working-directory: ./dcs-tools-artifacts - name: Publish attributes to AITSYS Internal Registry run: dotnet nuget push --source aitsys -k ${{ secrets.BYTESAFE }} * working-directory: ./dcs-attributes-artifacts diff --git a/.github/workflows/public-dev-release.yml b/.github/workflows/public-dev-release.yml index 3e0b32f72..fc9f13439 100644 --- a/.github/workflows/public-dev-release.yml +++ b/.github/workflows/public-dev-release.yml @@ -1,65 +1,65 @@ name: "Public Dev Release" on: workflow_dispatch: push: branches: - main paths: - 'DisCatSharp/**' - 'DisCatSharp.ApplicationCommands/**' - 'DisCatSharp.CommandsNext/**' - 'DisCatSharp.Common/**' - 'DisCatSharp.Configuration/**' - 'DisCatSharp.Experimental/**' - 'DisCatSharp.Hosting/**' - 'DisCatSharp.Hosting.DependencyInjection/**' - 'DisCatSharp.Interactivity/**' - 'DisCatSharp.Lavalink/**' - 'DisCatSharp.VoiceNext/**' - 'DisCatSharp.VoiceNext.Natives/**' - 'DisCatSharp.Targets/**' - 'DisCatSharp.sln' env: DOTNET_NOLOGO: true DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_CLI_TELEMETRY_OPTOUT: true DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true jobs: release: timeout-minutes: 15 runs-on: ubuntu-latest name: Build library and release internally steps: - name: Checkout repository uses: actions/checkout@v4 - name: Setup .NET uses: actions/setup-dotnet@v4.0.0 with: dotnet-version: | - 8.0.101 + 8.0.201 7.0.404 - name: Restore dependencies run: dotnet restore --no-cache -f -v minimal DisCatSharp.sln - name: Set outputs id: vars run: echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT - name: Build library as pre-release shell: pwsh run: ./DisCatSharp.Tools/rebuild-lib.ps1 -ArtifactLocation ./dcs-artifacts -Configuration Debug -VersionSuffix ${{ steps.vars.outputs.sha }} env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} - name: Remove invalid packages run: rm *.symbols.* working-directory: ./dcs-artifacts - name: Remove symbol packages run: rm *.snupkg working-directory: ./dcs-artifacts - name: Add AITSYS Internal NuGet source run: dotnet nuget add source --name discatsharp-git-releases https://registry.aitsys-infra.tools/nuget/discatsharp-git-releases/index.json --username bytesafe --password ${{ secrets.BYTESAFE }} --store-password-in-clear-text working-directory: ./dcs-artifacts - name: Publish to AITSYS Internal Registry run: dotnet nuget push --source discatsharp-git-releases -k ${{ secrets.BYTESAFE }} * working-directory: ./dcs-artifacts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e85872114..7526d9dd4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,128 +1,128 @@ name: "Release DisCatSharp" on: workflow_dispatch: inputs: version_suffix: description: "Version Suffix" required: false type: string release_as_prerelease: description: "Release as pre-release" required: true type: boolean default: true confirm_full_release: description: "Confirm that you want to release as a full release" required: false type: boolean default: false packages_to_release: description: "Packages to release" required: false type: choice default: "DisCatSharp" options: - "DisCatSharp" - "DisCatSharp.Attributes" # - "DisCatSharp.Tools" # This does not work currently env: DOTNET_NOLOGO: true DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_CLI_TELEMETRY_OPTOUT: true DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: ${{ secrets.SENTRY_ORG }} SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} jobs: release: timeout-minutes: 15 runs-on: ubuntu-latest name: Build library and release steps: - name: Checkout repository uses: actions/checkout@v4 - name: Check Intention if: ${{!inputs.release_as_prerelease}} run: | if [ "${{ inputs.confirm_full_release }}" = "false" ]; then echo "Full release not confirmed, exiting." exit 1 fi - name: Setup .NET uses: actions/setup-dotnet@v4.0.0 with: dotnet-version: | - 8.0.101 + 8.0.201 7.0.404 - name: Set outputs if: ${{ github.event.inputs.packages_to_release == 'DisCatSharp' }} id: vars run: | echo "version=10.6.0" >> $GITHUB_OUTPUT echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT - name: "Create Sentry prod release" if: ${{ !inputs.release_as_prerelease && github.event.inputs.packages_to_release == 'DisCatSharp' }} uses: getsentry/action-release@v1.7.0 with: environment: prod ignore_missing: true version: DisCatSharp@${{ steps.vars.outputs.version }}+${{ steps.vars.outputs.sha }} - name: "Create Sentry dev release" if: ${{ inputs.release_as_prerelease && github.event.inputs.packages_to_release == 'DisCatSharp' }} uses: getsentry/action-release@v1.7.0 with: environment: dev ignore_missing: true version: DisCatSharp@${{ steps.vars.outputs.version }}-${{ github.event.inputs.version_suffix }}+${{ steps.vars.outputs.sha }} - name: Restore dependencies (DisCatSharp) if: ${{ github.event.inputs.packages_to_release == 'DisCatSharp' }} run: dotnet restore --no-cache -f -v minimal DisCatSharp.sln - name: Restore dependencies (DisCatSharp.Attributes) if: ${{ github.event.inputs.packages_to_release == 'DisCatSharp.Attributes' }} run: dotnet restore --no-cache -f -v minimal DisCatSharp.Attributes/DisCatSharp.Attributes.csproj - name: Restore dependencies (DisCatSharp.Tools) if: ${{ github.event.inputs.packages_to_release == 'DisCatSharp.Tools' }} run: dotnet restore --no-cache -f -v minimal DisCatSharp.Tools/DisCatSharp.Tools.sln - name: Build DisCatSharp as full release if: ${{!inputs.release_as_prerelease && github.event.inputs.packages_to_release == 'DisCatSharp'}} shell: pwsh run: ./DisCatSharp.Tools/rebuild-lib.ps1 -ArtifactLocation ./dcs-artifacts -Configuration Release env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} - name: Build DisCatSharp as pre-release if: ${{inputs.release_as_prerelease && github.event.inputs.packages_to_release == 'DisCatSharp'}} shell: pwsh run: ./DisCatSharp.Tools/rebuild-lib.ps1 -ArtifactLocation ./dcs-artifacts -Configuration Release -VersionSuffix ${{github.event.inputs.version_suffix}} env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} - name: Build DisCatSharp.Attributes as full release if: ${{!inputs.release_as_prerelease && github.event.inputs.packages_to_release == 'DisCatSharp.Attributes'}} shell: pwsh run: ./DisCatSharp.Tools/rebuild-attributes.ps1 -ArtifactLocation ./dcs-artifacts -Configuration Release - name: Build DisCatSharp.Attributes as pre-release if: ${{inputs.release_as_prerelease && github.event.inputs.packages_to_release == 'DisCatSharp.Attributes'}} shell: pwsh run: ./DisCatSharp.Tools/rebuild-attributes.ps1 -ArtifactLocation ./dcs-artifacts -Configuration Release -VersionSuffix ${{github.event.inputs.version_suffix}} - name: Build DisCatSharp.Tools as full release if: ${{!inputs.release_as_prerelease && github.event.inputs.packages_to_release == 'DisCatSharp.Tools'}} shell: pwsh run: ./DisCatSharp.Tools/rebuild-tools.ps1 -ArtifactLocation ./dcs-artifacts -Configuration Release - name: Build DisCatSharp.Tools as pre-release if: ${{inputs.release_as_prerelease && github.event.inputs.packages_to_release == 'DisCatSharp.Tools'}} run: ./DisCatSharp.Tools/rebuild-tools.ps1 -ArtifactLocation ./dcs-artifacts -Configuration Release -VersionSuffix ${{github.event.inputs.version_suffix}} - name: Remove invalid packages shell: pwsh run: rm *.symbols.* working-directory: ./dcs-artifacts - name: Publish to NuGet shell: pwsh run: dotnet nuget push --source https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} * --skip-duplicate working-directory: ./dcs-artifacts - name: Publish to GitHub Packages shell: pwsh run: dotnet nuget push --source https://nuget.pkg.github.com/Aiko-IT-Systems/index.json -k ${{secrets.NYUW_TOKEN_GH}} * working-directory: ./dcs-artifacts diff --git a/DisCatSharp.ApplicationCommands/global.json b/DisCatSharp.ApplicationCommands/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.ApplicationCommands/global.json +++ b/DisCatSharp.ApplicationCommands/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp.Attributes/global.json b/DisCatSharp.Attributes/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.Attributes/global.json +++ b/DisCatSharp.Attributes/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp.CommandsNext/global.json b/DisCatSharp.CommandsNext/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.CommandsNext/global.json +++ b/DisCatSharp.CommandsNext/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp.Common/global.json b/DisCatSharp.Common/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.Common/global.json +++ b/DisCatSharp.Common/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp.Configuration/global.json b/DisCatSharp.Configuration/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.Configuration/global.json +++ b/DisCatSharp.Configuration/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp.Experimental/global.json b/DisCatSharp.Experimental/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.Experimental/global.json +++ b/DisCatSharp.Experimental/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp.Hosting.DependencyInjection/global.json b/DisCatSharp.Hosting.DependencyInjection/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.Hosting.DependencyInjection/global.json +++ b/DisCatSharp.Hosting.DependencyInjection/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp.Hosting/global.json b/DisCatSharp.Hosting/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.Hosting/global.json +++ b/DisCatSharp.Hosting/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp.Interactivity/global.json b/DisCatSharp.Interactivity/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.Interactivity/global.json +++ b/DisCatSharp.Interactivity/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp.Tests/DisCatSharp.Configuration.Tests/global.json b/DisCatSharp.Tests/DisCatSharp.Configuration.Tests/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.Tests/DisCatSharp.Configuration.Tests/global.json +++ b/DisCatSharp.Tests/DisCatSharp.Configuration.Tests/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp.Tests/DisCatSharp.EventHandlers.Tests/global.json b/DisCatSharp.Tests/DisCatSharp.EventHandlers.Tests/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.Tests/DisCatSharp.EventHandlers.Tests/global.json +++ b/DisCatSharp.Tests/DisCatSharp.EventHandlers.Tests/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp.Tests/DisCatSharp.Hosting.Tests/global.json b/DisCatSharp.Tests/DisCatSharp.Hosting.Tests/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.Tests/DisCatSharp.Hosting.Tests/global.json +++ b/DisCatSharp.Tests/DisCatSharp.Hosting.Tests/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp.VoiceNext.Natives/global.json b/DisCatSharp.VoiceNext.Natives/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.VoiceNext.Natives/global.json +++ b/DisCatSharp.VoiceNext.Natives/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp.VoiceNext/global.json b/DisCatSharp.VoiceNext/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp.VoiceNext/global.json +++ b/DisCatSharp.VoiceNext/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/DisCatSharp/global.json b/DisCatSharp/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/DisCatSharp/global.json +++ b/DisCatSharp/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } } diff --git a/global.json b/global.json index 67cf2ff2c..9ea53c02b 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.201", "rollForward": "latestMinor" } }