Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,22 @@ jobs:
fetch-depth: 0

- name: 🔽 Setup dotnet 2.1
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5
with:
dotnet-version: '2.1.x'

- name: 🔽 Setup dotnet 3.1
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5
with:
dotnet-version: '3.1.x'

- name: 🔽 Setup dotnet 5.0.x
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5
with:
dotnet-version: '5.0.x'

- name: 🔽 Setup dotnet from global.json
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5

- name: 🔍 Print dotnet info
run: dotnet --info
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
uses: actions/checkout@v3

- name: 🔽 Install dotnet
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5

- name: 🔍 Print dotnet info
run: dotnet --info
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
name: global-json

- name: 🔽 Install dotnet
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5

- name: 🔼 Publish package to nuget
run: dotnet nuget push --force-english-output --api-key '${{ secrets.GITHUB_TOKEN }}' --source 'https://nuget.pkg.github.com/YoloDev/index.json' --skip-duplicate "nuget/*.nupkg"
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
name: global-json

- name: 🔽 Install dotnet
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5

- name: 🔼 Publish package to nuget
run: dotnet nuget push --force-english-output --api-key '${{ secrets.NUGET_API_KEY }}' --source '${{ secrets.NUGET_FEED }}' --skip-duplicate "nuget/*.nupkg"
Loading