Skip to content

Commit

Permalink
add gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
wolflu05 committed Sep 19, 2024
1 parent 2a39936 commit 5197f24
Show file tree
Hide file tree
Showing 4 changed files with 144 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# All permissions
* @wolflu05
26 changes: 26 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# .github/release.yml

changelog:
categories:
- title: ":boom: Breaking Changes"
labels:
- Semver-Major
- breaking
- title: ":sparkles: New Features"
labels:
- Semver-Minor
- type/feature
- type/enhancement
- type/fields
- title: ":bug: Bug Fixes"
labels:
- Semver-Patch
- type/bug
- title: ":package: Devops / Setup / Docs Changes"
labels:
- type/setup
- type/documentation
- type/dependencies
- title: ":memo: Other Changes"
labels:
- "*"
113 changes: 113 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
name: CI

on:
push:
pull_request:
release:
types: [published]

jobs:
style-python:
name: "💄 Style: python"
if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }}
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]

- name: Setup python
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # [email protected]
with:
python-version: "3.10"

- name: Install style check dependencies
run: |
pip install flake8==6.0.0
pip install pep8-naming==0.13.2
- name: Check style
run: |
flake8 .
style-js:
name: "💄 Style: js"
if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }}
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]

- name: Setup node
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # [email protected]
with:
node-version: "18"

- name: Install dependencies
run: cd inventree_template_editor/frontend && npm ci

- name: Check style
run: cd inventree_template_editor/frontend && npm run lint

build-js:
name: "🏗️ Build: js"
needs: [style-js]
if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }}
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]

- name: Setup node
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # [email protected]
with:
node-version: "18"

- name: Install dependencies
run: cd inventree_template_editor/frontend && npm ci

- name: Build js
run: cd inventree_template_editor/frontend && npm run build

- name: Upload frontend artifact
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
with:
name: frontend
path: inventree_template_editor/static/dist

publish:
if: github.event_name == 'release' && github.event.action == 'published'
needs: [build-js]
name: 📦 Publish to PyPi
runs-on: ubuntu-latest
environment:
name: release
url: https://pypi.org/p/inventree-template-editor-plugin
permissions:
id-token: write

steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]

- name: Setup python
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # [email protected]
with:
python-version: "3.10"

- name: Install build dependencies
run: pip install --upgrade wheel setuptools twine build

- name: Download frontend artifact
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # [email protected]
with:
name: frontend
path: inventree_template_editor/static/dist

- name: Build pip package
run: python3 -m build

- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@f8c70e705ffc13c3b4d1221169b84f12a75d6ca8 # [email protected]
5 changes: 3 additions & 2 deletions inventree_template_editor/InvenTreeTemplateEditorPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

from .version import TEMPLATE_EDITOR_PLUGIN_VERSION


class InvenTreeTemplateEditorPlugin(InvenTreePlugin, UserInterfaceMixin):
AUTHOR = "wolflu05"
DESCRIPTION = "InvenTree template editor plugin"
Expand All @@ -25,7 +26,7 @@ def get_ui_features(self, feature_type: FeatureType, context: dict, request: Req
if feature_type != "template_editor" or context.get("template_type", None) != "labeltemplate":
return []

IS_DEV = settings.CUSTOMIZE.get("inventree_template_editor_plugin_dev", False)
is_dev = settings.CUSTOMIZE.get("inventree_template_editor_plugin_dev", False)

return [
{
Expand All @@ -35,6 +36,6 @@ def get_ui_features(self, feature_type: FeatureType, context: dict, request: Req
"title": _("Label Designer"),
"icon": "build"
},
"source": plugin_static({}, "labelEditor.dev.js" if IS_DEV else "dist/labelEditor.js", plugin="inventree-template-editor-plugin"),
"source": plugin_static({}, "labelEditor.dev.js" if is_dev else "dist/labelEditor.js", plugin="inventree-template-editor-plugin"),
}
]

0 comments on commit 5197f24

Please sign in to comment.