Skip to content

Commit

Permalink
Update pip-tool.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
verygoodlee authored Feb 4, 2024
1 parent 8490b73 commit d5ce187
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions .github/workflows/pip-tool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,33 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Compile with Ahk2Exe

- name: Create Output Dir
shell: cmd
run: md x86 x64

- name: Compile x86
uses: CCCC-L/Action-Ahk2Exe@main
with:
in: pip-tool.ahk
out: pip-tool.exe
out: x86/pip-tool.exe
base: 32

- name: Upload Artifact

- name: Compile x64
uses: CCCC-L/Action-Ahk2Exe@main
with:
in: pip-tool.ahk
out: x64/pip-tool.exe
base: 64

- name: Upload Artifact x86
uses: actions/upload-artifact@master
with:
name: pip-tool_x86
path: x86/pip-tool.exe

- name: Upload Artifact x64
uses: actions/upload-artifact@master
with:
name: pip-tool
path: pip-tool.exe
name: pip-tool_x64
path: x64/pip-tool.exe

0 comments on commit d5ce187

Please sign in to comment.