Browse Source

Merge pull request #1056 from AsakusaRinne/master

ci: update release ci.
tags/v0.100.5
Rinne GitHub 2 years ago
parent
commit
8a6ae8cc0a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 11 deletions
  1. +1
    -1
      .github/workflows/release.yml
  2. +10
    -10
      .github/workflows/release_prepare.yml

+ 1
- 1
.github/workflows/release.yml View File

@@ -11,7 +11,7 @@ env:
GITHUB_TOKEN: ${{ SECRETS.RINNE_GITHUB_TOKEN }}

jobs:
release to myget:
release_to_myget:
runs-on: windows-latest
# needs: run-semantic-release
needs: build


+ 10
- 10
.github/workflows/release_prepare.yml View File

@@ -17,19 +17,19 @@ jobs:

steps:
- uses: actions/checkout@v3
# - name: Setup .NET 6.0.x SDK
# uses: actions/setup-dotnet@v3
# with:
# dotnet-version: 6.0.x
- name: Setup .NET 6.0.x SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x

# - name: Check .NET info
# run: dotnet --info
- name: Check .NET info
run: dotnet --info

# - name: Install dependencies
# run: dotnet restore
- name: Install dependencies
run: dotnet restore

# - name: Build solution
# run: dotnet build -c Release --no-restore
- name: Build solution
run: dotnet build -c Release --no-restore

# run-semantic-release:
# runs-on: ubuntu-latest


Loading…
Cancel
Save