File tree Expand file tree Collapse file tree 5 files changed +11
-7
lines changed Expand file tree Collapse file tree 5 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1
1
name : generate-changelog
2
+ run-name : Generate changelog / ${{ github.event.head_commit.message }}
2
3
3
4
on :
4
5
push :
Original file line number Diff line number Diff line change 1
1
name : generate-gh-pages
2
+ run-name : Generate gh-pages / ${{ github.event.head_commit.message }}
2
3
3
4
on :
4
5
push :
Original file line number Diff line number Diff line change 1
1
name : publish-nightly
2
+ run-name : Publish nightly nupkg / ${{ github.event.head_commit.message }}
2
3
3
4
on :
4
5
push :
14
15
run : echo "DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
15
16
- name : Pack
16
17
run : ./build.cmd pack /p:VersionSuffix=nightly.$DATE.$GITHUB_RUN_NUMBER
18
+ - name : Upload nupkg to artifacts
19
+ uses : actions/upload-artifact@v3
20
+ with :
21
+ name : nupkgs
22
+ path : " **/*.nupkg"
17
23
- name : Publish nupkg
18
24
env :
19
25
MYGET_API_KEY : ${{ secrets.MYGET_API_KEY }}
Original file line number Diff line number Diff line change 1
1
name : report-test-results
2
+ run-name : Report test results for '${{ github.event.workflow_run.head_branch }}' / ${{ github.event.workflow_run.display_title }}
2
3
3
4
on :
4
5
workflow_run :
11
12
runs-on : ubuntu-latest
12
13
permissions : write-all
13
14
steps :
14
- - name : Print info about the target workflow_run
15
- run : |
16
- echo "workflow_run: ${{ github.event.workflow_run }}"
17
- echo "head_sha: ${{ github.event.workflow_run.head_sha }}"
18
- echo "workflow_id: ${{ github.event.workflow_run.workflow_id }}"
19
- echo "head_branch: ${{ github.event.workflow_run.head_branch }}"
20
15
- name : Download Artifacts
21
16
uses : dawidd6/action-download-artifact@v2
22
17
with :
Original file line number Diff line number Diff line change 1
1
name : run-tests
2
+ run-name : Run tests / ${{ github.event.head_commit.message }}
2
3
3
4
on :
4
5
pull_request :
95
96
name : test-macos-trx
96
97
path : " **/*.trx"
97
98
98
- docs- spellcheck :
99
+ spellcheck-docs :
99
100
runs-on : ubuntu-latest
100
101
steps :
101
102
- uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments