fix: avatar url endpoint in guild member #581
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: "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/[email protected] | |
with: | |
dotnet-version: | | |
7.0.403 | |
6.x | |
- name: Restore dependencies | |
run: dotnet restore 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 Release -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 aitsys https://registry.aitsys-infra.tools/nuget/aitsys/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 aitsys -k ${{ secrets.BYTESAFE }} * | |
working-directory: ./dcs-artifacts |