Skip to content

Commit

Permalink
Add a release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mtusnio committed Oct 29, 2024
1 parent bdb8c12 commit cdefa34
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
push:
tags:
- "v*"

name: Create Release

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Create a release bundle
run: |
./scripts/create-bundle.sh
- uses: ncipollo/release-action@v1
with:
artifacts: "chinese-dict.zip"

0 comments on commit cdefa34

Please sign in to comment.