Skip to content

Commit

Permalink
add release bundle workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cbix committed Jul 23, 2022
1 parent 70adc80 commit 35f0c53
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 bundle

on:
push:
tags:
- "v*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Bundle
run: |
zip -r [email protected] * -x .* test/\*
- name: Create release
uses: softprops/action-gh-release@v1
with:
name: gsjackctl ${{ github.ref }}
generate_release_notes: true
files: [email protected]

0 comments on commit 35f0c53

Please sign in to comment.