Skip to content

Commit

Permalink
add release file
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsumoto-ren committed Mar 25, 2024
1 parent 26e0de3 commit a4939fe
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/make_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: "tagged-release"

on:
push:
tags:
- "v*"

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"
permissions:
contents: write

steps:
- name: "Checkout"
uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: "recursive"

- name: Install zipmerge
run: |
sudo apt-get install -y zipmerge
- name: "Create zip"
run: |
./package.sh --target github
- name: "Create release"
uses: softprops/action-gh-release@v2
with:
prerelease: false
make_latest: true
generate_release_notes: true
name: "Japanese ${{github.ref_name}}"
files: |
*.ankiaddon

0 comments on commit a4939fe

Please sign in to comment.