Skip to content

ci: update release ci. #1056

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 6, 2023
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release_prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down