Skip to content

Commit

Permalink
Add workflow to create release bundle.
Browse files Browse the repository at this point in the history
  • Loading branch information
stevewgr committed Jul 12, 2022
1 parent 168eb9a commit 7d70a8b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release

on:
push:
tags: [ '*' ]

jobs:
Windows:
runs-on: windows-2022

steps:
- uses: actions/checkout@v2

- name: Build all
shell: cmd
run: |
build.cmd
- name: Upload
uses: actions/upload-artifact@v2
with:
name: KO-All-x86-release
path: ./build

0 comments on commit 7d70a8b

Please sign in to comment.