File tree Expand file tree Collapse file tree 4 files changed +37
-4
lines changed Expand file tree Collapse file tree 4 files changed +37
-4
lines changed Original file line number Diff line number Diff line change
1
+ patreon : rainwarrior
Original file line number Diff line number Diff line change
1
+ name : NSFPlay Builds
2
+ on :
3
+ push :
4
+ branches : [ "master" ]
5
+ pull_request :
6
+ branches : [ "master" ]
7
+ workflow_dispatch :
8
+ concurrency :
9
+ group : ${{ github.workflow }}-${{ github.ref }}
10
+ cancel-in-progress : true
11
+
12
+ jobs :
13
+ build-win32 :
14
+ name : NSFPlay Windows 32-bit
15
+ runs-on : windows-2019
16
+ steps :
17
+ - name : Checkout Files
18
+ uses : actions/checkout@v4
19
+ - name : Setup MSVC
20
+ uses : microsoft/setup-msbuild@v2
21
+ - name : Build
22
+ run : msbuild nsfplay.sln -t:rebuild -property:Configuration=Release -property:Platform=Win32
23
+ - name : Prepare Artifacts
24
+ shell : pwsh
25
+ run : |
26
+ ./artifact.bat
27
+ echo "BUILD_TAG=$(git log -1 --format="%ad--%h" --date=format-local:"%Y-%m-%d-%H%M%S")" >> $env:GITHUB_ENV
28
+ - name : Upload Artifact
29
+ uses : actions/upload-artifact@v4
30
+ with :
31
+ name : nsfplay-unstable--${{ env.BUILD_TAG }}
32
+ path : artifact/
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ <h1>NSFPlay</h1>
38
38
39
39
< table align ="center "> < tr > < td > < ul >
40
40
< li > Stable release: < a href ="https://github.com/bbbradsmith/nsfplay/releases/tag/2.6 "> NSFPlay 2.6</ a > 2023-07-03</ li >
41
- < li > Unstable preview: < a href ="https://ci.appveyor.com/project/ bbbradsmith/nsfplay/branch/master/artifacts " > Appveyor Artifact</ a >
41
+ < li > Unstable preview: < a href ="https://nightly.link/ bbbradsmith/nsfplay/workflows/build/master " > Github Actions Artifact</ a >
42
42
< li > Source code: < a href ="https://github.com/bbbradsmith/nsfplay "> GitHub Repository</ a > </ li >
43
43
</ ul > </ td > </ tr > </ table >
44
44
@@ -68,7 +68,7 @@ <h1>NSFPlay</h1>
68
68
< div class ="bottom ">
69
69
< br />
70
70
< br />
71
- < p > 2023-07-03 < br />
71
+ < p > 2024-04-14 < br />
72
72
< a href ="http://rainwarrior.ca "> rainwarrior.ca</ a > </ p >
73
73
</ div >
74
74
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ NSFPlay/NSFPlug source code
3
3
This code is maintained by Brad Smith. It is a fork of NSFPlay/NSFPlug by Brezza. The latest version should be available at:
4
4
- https://bbbradsmith.github.io/nsfplay/
5
5
6
- Unstable preview builds will be automatically generated by Appveyor :
7
- - https://ci.appveyor.com/project/ bbbradsmith/nsfplay/branch/master/artifacts
6
+ Unstable preview builds will be automatically generated by Github Actions :
7
+ - https://nightly.link/ bbbradsmith/nsfplay/workflows/build/master
8
8
9
9
This code contains several modifications to original, see nsfplay.txt for a list of changes.
10
10
You can’t perform that action at this time.
0 commit comments