From bd8b107a51a7f1df4bfe072248cbceb1352067e1 Mon Sep 17 00:00:00 2001 From: Manuel Martin Date: Wed, 3 Apr 2024 11:35:57 +0200 Subject: [PATCH] Add GA --- .../bug-report-blender-add-on.md | 29 +++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 +++++++++++++ .github/workflows/publish.yml | 26 +++++++++++++++++ 3 files changed, 75 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report-blender-add-on.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/workflows/publish.yml diff --git a/.github/ISSUE_TEMPLATE/bug-report-blender-add-on.md b/.github/ISSUE_TEMPLATE/bug-report-blender-add-on.md new file mode 100644 index 0000000..68ad7b8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report-blender-add-on.md @@ -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** + - OS version: + - Hubs Backup Tool version: + +**Additional context** +Anything else that might be important. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..bbcbbe7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -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. diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..14c345b --- /dev/null +++ b/.github/workflows/publish.yml @@ -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