Skip to content

Commit

Permalink
update .github
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsumoto-ren committed Mar 18, 2024
1 parent 5272fce commit bdd64f9
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
blank_issues_enabled: false
contact_links:
- name: Bug Reports
url: https://tatsumoto.neocities.org/blog/join-our-community
about: This issue tracker is for developers. Please report any bugs you encounter over in the chats, and they will be triaged there.

- name: Questions/Support
url: https://tatsumoto.neocities.org/blog/join-our-community
about: If you have a question or need support, please post in the community chats.

- name: Feature Requests/Suggestions
url: https://tatsumoto.neocities.org/blog/join-our-community
about: Please post suggestions and feature requests in our chat.
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: "Merge Notes ${{github.ref_name}}"
files: |
*.ankiaddon

0 comments on commit bdd64f9

Please sign in to comment.