Skip to content

Commit

Permalink
update github
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsumoto-ren committed Jun 8, 2024
1 parent a70e318 commit 93c2d73
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# These are supported funding model platforms

custom: https://tatsumoto.neocities.org/blog/donating-to-tatsumoto.html
patreon: tatsumoto_ren
liberapay: Tatsumoto
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: "Flexible Grading ${{github.ref_name}}"
files: |
*.ankiaddon

0 comments on commit 93c2d73

Please sign in to comment.