Skip to content

Commit

Permalink
Merge pull request #40 from krystal/chore/build-release-ci
Browse files Browse the repository at this point in the history
chore(CI): build the zip and attch to release
  • Loading branch information
bencromwell authored Feb 3, 2025
2 parents 667a97e + 9225057 commit 6ec05db
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/zip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Create and attach zip to release

on:
push:
tags:
- 'v*.*.*'
- 'v*.*'
- 'v*'

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Prepare files
run: |
make build
make install
make build-server-module
- name: Upload zip to release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/katapult.zip

0 comments on commit 6ec05db

Please sign in to comment.