-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
144 additions
and
2 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# All permissions | ||
* @wolflu05 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters