Skip to content

Commit 3068037

Browse files
committed
Initial secured example
0 parents  commit 3068037

6 files changed

Lines changed: 868 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build-windows:
9+
runs-on: windows-latest
10+
steps:
11+
- name: checkout
12+
uses: actions/checkout@v4
13+
14+
- name: setup msvc
15+
uses: ilammy/msvc-dev-cmd@v1
16+
17+
- name: build x64 release
18+
shell: powershell
19+
run: |
20+
if (Test-Path "x64/example.sln") {
21+
msbuild "x64/example.sln" /m /p:Configuration=Release /p:Platform=x64
22+
} else {
23+
Write-Error "x64/example.sln not found"
24+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Pull Request Notification
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
8+
jobs:
9+
notify:
10+
uses: KeyAuth/.github/.github/workflows/pr_notification_global.yml@main
11+
secrets:
12+
DISCORD_PR: ${{ secrets.DISCORD_PR }}

0 commit comments

Comments
 (0)