Browse Source

Merge pull request #577 from ionite34/use-dotnet8-for-pupnet

Use dotnet8 for pupnet
pull/531/head
JT 8 months ago committed by GitHub
parent
commit
29b6863943
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 13
      .github/workflows/release.yml

13
.github/workflows/release.yml

@ -76,20 +76,15 @@ jobs:
echo "Using version ${{ github.event.inputs.version }}" echo "Using version ${{ github.event.inputs.version }}"
echo "RELEASE_VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV echo "RELEASE_VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV
- name: Set up .NET 6 (for PupNet) - name: Set up .NET 8
uses: actions/setup-dotnet@v3 uses: actions/setup-dotnet@v3
with: with:
dotnet-version: '6.0.x' dotnet-version: '8.0.x'
- name: Install PupNet - name: Install PupNet
run: | run: |
sudo apt-get -y install libfuse2 sudo apt-get -y install libfuse2
dotnet tool install --framework net6.0 -g KuiperZone.PupNet dotnet tool install -g KuiperZone.PupNet
- name: Set up .NET 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: PupNet Build - name: PupNet Build
env: env:

Loading…
Cancel
Save