-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bd3d8a6
commit 37a7de0
Showing
2 changed files
with
49 additions
and
49 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
name: Check Update | ||
concurrency: check | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Automatically run on every Sunday | ||
- cron: '0 0 * * 0' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected].6 | ||
with: | ||
token: ${{ secrets.WORKFLOW_SECRET }} | ||
|
||
- name: Check for Update | ||
uses: saadmk11/[email protected] | ||
with: | ||
token: ${{ secrets.WORKFLOW_SECRET }} | ||
name: Check Update | ||
concurrency: check | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Automatically run on every Sunday | ||
- cron: '0 0 * * 0' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected].7 | ||
with: | ||
token: ${{ secrets.WORKFLOW_SECRET }} | ||
|
||
- name: Check for Update | ||
uses: saadmk11/[email protected] | ||
with: | ||
token: ${{ secrets.WORKFLOW_SECRET }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
name: Nuget Build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected].6 | ||
|
||
- name: setup dotnet | ||
uses: actions/[email protected].0 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: test | ||
run: | | ||
dotnet test --filter Category!=Dependencies | ||
- name: pack | ||
run: | | ||
dotnet pack -c Release | ||
- name: publish | ||
run: | | ||
dotnet nuget push **/*.nupkg --source 'https://api.nuget.org/v3/index.json' --skip-duplicate -k ${{ secrets.nuget }} | ||
name: Nuget Build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected].7 | ||
|
||
- name: setup dotnet | ||
uses: actions/[email protected].1 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: test | ||
run: | | ||
dotnet test --filter Category!=Dependencies | ||
- name: pack | ||
run: | | ||
dotnet pack -c Release | ||
- name: publish | ||
run: | | ||
dotnet nuget push **/*.nupkg --source 'https://api.nuget.org/v3/index.json' --skip-duplicate -k ${{ secrets.nuget }} |