Skip to content

Commit

Permalink
Add GA
Browse files Browse the repository at this point in the history
  • Loading branch information
keianhzo committed Apr 3, 2024
1 parent a30ded4 commit bd8b107
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report-blender-add-on.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: Bug Report Hubs Backup tool
about: Help improve the Hubs Backup Tool with quality bug-reports
title: ''
labels: ''
assignees: ''

---

**Description**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
*Please include detailed steps so others can reproduce*


**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Hardware** <!-- Please complete the following information -->
- OS version:
- Hubs Backup Tool version:

**Additional context**
Anything else that might be important.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
26 changes: 26 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
push:
branches:
- main
pull_request:

jobs:
build-linux:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Configure
uses: actions/setup-node@v4
with:
node-version: "16.16.0"
- name: Build
run: npm ci
- name: Make
run: npm run make -- --platform linux
- name: Publish
uses: actions/upload-artifact@v3
with:
path: out/make/zip/linux/x64
if-no-files-found: error

0 comments on commit bd8b107

Please sign in to comment.