forked from xfrv/notifications-at-top
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge Pull Requests with my own minor tweaks. Adds bottomleft (@vorte…
…x1942), topmiddle (@Farenheith), taskbar icon and exit option as well as github build workflow (@GabeDuarteM).
- Loading branch information
HeyItsJono
committed
Jul 15, 2023
1 parent
a4a2773
commit 6be31dd
Showing
4 changed files
with
192 additions
and
58 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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Build and Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Build executables | ||
run: ${{ github.workspace }}/build.cmd | ||
|
||
- name: Upload build artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: notifications-at-top | ||
path: | | ||
${{ github.workspace }}/topleft.exe | ||
${{ github.workspace }}/topright.exe | ||
${{ github.workspace }}/topmiddle.exe | ||
${{ github.workspace }}/bottomleft.exe | ||
- name: Create release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
topleft.exe | ||
topright.exe | ||
topmiddle.exe | ||
bottomleft.exe |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
topleft.exe | ||
topright.exe | ||
topmiddle.exe | ||
bottomleft.exe |
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,4 +1,6 @@ | ||
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe -lib:"C:\Windows\Microsoft.NET\Framework64\v4.0.30319" -r:"C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Microsoft.VisualBasic.dll" -target:winexe -out:"topleft.exe" "topnotify.cs" | ||
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe -lib:"C:\Windows\Microsoft.NET\Framework64\v4.0.30319" -r:"C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Microsoft.VisualBasic.dll" -target:winexe -out:"topright.exe" "topnotify.cs" | ||
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe -lib:"C:\Windows\Microsoft.NET\Framework64\v4.0.30319" -r:"C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Microsoft.VisualBasic.dll" -target:winexe -out:"topmiddle.exe" "topnotify.cs" | ||
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe -lib:"C:\Windows\Microsoft.NET\Framework64\v4.0.30319" -r:"C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Microsoft.VisualBasic.dll" -target:winexe -out:"bottomleft.exe" "topnotify.cs" | ||
|
||
PAUSE |
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