Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit 7677a21

Browse files
committed
Update workflows
1 parent 408d044 commit 7677a21

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

.github/workflows/compile.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,28 @@ jobs:
1919

2020
# Nuget
2121
- uses: nuget/setup-nuget@v1
22-
- run: nuget restore Spedit.sln
22+
- run: nuget restore Spcode.sln
2323

2424
# Setup MSBuild
2525
- name: Setup MSBuild.exe
2626
uses: microsoft/[email protected]
2727

2828

29-
# Build Spedit
30-
- name: Build Spedit
31-
run: msbuild Spedit.csproj /p:Configuration=Release
29+
# Build Spcode
30+
- name: Build Spcode
31+
run: msbuild Spcode.csproj /p:Configuration=Release
3232

3333
# Build Installer
3434
- name: Build Installer (NSIS)
3535
uses: joncloud/makensis-action@v1
3636
with:
37-
script-file: .\bin\Release\SPEdit.nsi
37+
script-file: .\bin\Release\SPCode.nsi
3838

3939
- name: Artifact Installer
4040
uses: actions/upload-artifact@v1
4141
with:
42-
name: SPEdit.Installer.exe
43-
path: .\bin\Release\SPEdit.Installer.exe
42+
name: SPCode.Installer.exe
43+
path: .\bin\Release\SPCode.Installer.exe
4444

4545

4646
# Compress Portable Version
@@ -51,15 +51,15 @@ jobs:
5151
- name: Artifact Portable
5252
uses: actions/upload-artifact@v1
5353
with:
54-
name: SPEdit.Portable.zip
55-
path: .\bin\Release\SPEdit.Portable.zip
54+
name: SPCode.Portable.zip
55+
path: .\bin\Release\SPCode.Portable.zip
5656

5757
# Build Updater
5858
- name: Build Updater
59-
run: msbuild Deploy\SpeditUpdater\SpeditUpdater.csproj /p:Configuration=Release
59+
run: msbuild Deploy\SpcodeUpdater\SpcodeUpdater.csproj /p:Configuration=Release
6060

6161
- name: Artifact Updater
6262
uses: actions/upload-artifact@v1
6363
with:
64-
name: SpeditUpdater.exe
65-
path: .\Deploy\SpeditUpdater\bin\Release\SpeditUpdater.exe
64+
name: SpcodeUpdater.exe
65+
path: .\Deploy\SpcodeUpdater\bin\Release\SpcodeUpdater.exe

.github/workflows/release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,22 @@ jobs:
2424
- uses: nuget/setup-nuget@v1
2525
with:
2626
nuget-version: '5.x'
27-
- run: nuget restore Spedit.sln
27+
- run: nuget restore Spcode.sln
2828

2929
# Setup MSBuild
3030
- name: Setup MSBuild.exe
3131
uses: microsoft/[email protected]
3232

3333

34-
# Build Spedit
35-
- name: Build Spedit
36-
run: msbuild Spedit.csproj /p:Configuration=Release
34+
# Build Spcode
35+
- name: Build Spcode
36+
run: msbuild Spcode.csproj /p:Configuration=Release
3737

3838
# Build Installer
3939
- name: Build Installer (NSIS)
4040
uses: joncloud/makensis-action@v1
4141
with:
42-
script-file: .\bin\Release\SPEdit.nsi
42+
script-file: .\bin\Release\SPCode.nsi
4343

4444
# Compress Portable Version
4545
- name: Compress Portable Version
@@ -48,7 +48,7 @@ jobs:
4848

4949
# Build Updater
5050
- name: Build Updater
51-
run: msbuild Deploy\SpeditUpdater\SpeditUpdater.csproj /p:Configuration=Release
51+
run: msbuild Deploy\SpcodeUpdater\SpcodeUpdater.csproj /p:Configuration=Release
5252

5353
- name: Create Release
5454
id: create_release
@@ -69,8 +69,8 @@ jobs:
6969
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7070
with:
7171
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
72-
asset_path: .\bin\Release\SPEdit.Installer.exe
73-
asset_name: SPEdit.Installer.exe
72+
asset_path: .\bin\Release\SPCode.Installer.exe
73+
asset_name: SPCode.Installer.exe
7474
asset_content_type: application/octet-stream
7575

7676
- name: Upload Portable
@@ -80,8 +80,8 @@ jobs:
8080
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8181
with:
8282
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
83-
asset_path: .\bin\Release\SPEdit.Portable.zip
84-
asset_name: SPEdit.Portable.zip
83+
asset_path: .\bin\Release\SPCode.Portable.zip
84+
asset_name: SPCode.Portable.zip
8585
asset_content_type: application/zip
8686

8787
- name: Upload Updater
@@ -91,6 +91,6 @@ jobs:
9191
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9292
with:
9393
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
94-
asset_path: .\Deploy\SpeditUpdater\bin\Release\SpeditUpdater.exe
95-
asset_name: SpeditUpdater.exe
94+
asset_path: .\Deploy\SpcodeUpdater\bin\Release\SpcodeUpdater.exe
95+
asset_name: SpcodeUpdater.exe
9696
asset_content_type: application/octet-stream

0 commit comments

Comments
 (0)