Skip to content

Commit

Permalink
fsr
Browse files Browse the repository at this point in the history
  • Loading branch information
boomzero committed Dec 31, 2023
1 parent 3d34e39 commit 32ee1c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
deno-version: v1.x
- name: Build
run: |
deno compile -A -c tsconfig.json index.ts -o bin/quicksubmit-linux
deno compile -A -c tsconfig.json index.ts -o bin/quicksubmit-win.exe --target x86_64-pc-windows-msvc
deno compile -A -c tsconfig.json index.ts -o bin/quicksubmit-macos --target x86_64-apple-darwin
deno compile -A -c tsconfig.json -o bin/quicksubmit-linux index.ts
deno compile -A -c tsconfig.json -o bin/quicksubmit-win.exe --target x86_64-pc-windows-msvc index.ts
deno compile -A -c tsconfig.json -o bin/quicksubmit-macos --target x86_64-apple-darwin index.ts
- name: Upload Linux binaries to release
uses: svenstaro/upload-release-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const program = new Command();

program
.name("quickSubmit")
.version("v1.4.2")
.version("v1.4.3")
.argument("[file]", "File to submit", "main.cpp")
.requiredOption(
"-p, --pid <number>",
Expand Down

0 comments on commit 32ee1c9

Please sign in to comment.