Skip to content

Commit

Permalink
Add GitHub action to release on tag push
Browse files Browse the repository at this point in the history
  • Loading branch information
wong2 committed Nov 9, 2023
1 parent fffaea8 commit 007ce46
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Release Workflow

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

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20'

- name: Install dependencies
run: yarn install

- name: Build
run: yarn build

- name: Package
uses: vimtor/action-zip@v1.1
with:
files: dist/
dest: chathub.zip

- name: Release
uses: softprops/action-gh-release@v1
with:
files: chathub.zip

0 comments on commit 007ce46

Please sign in to comment.