mirror of
https://github.com/cloudmaker97/JTL-Plugin-Template.git
synced 2025-12-06 08:28:34 +00:00
56 lines
No EOL
1.3 KiB
YAML
56 lines
No EOL
1.3 KiB
YAML
name: Build Webpack
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags:
|
|
|
|
env:
|
|
PLUGIN_NAME: plugin_test
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: setup_node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 'latest'
|
|
|
|
- name: npm_install
|
|
working-directory: ./frontend/webpack
|
|
run: npm install
|
|
|
|
- name: build_webpack
|
|
working-directory: ./frontend/webpack
|
|
run: npm run build
|
|
|
|
- name: node_cleanup
|
|
working-directory: ./frontend/webpack
|
|
run: rm -rf node_modules
|
|
|
|
- name: version
|
|
id: get_version
|
|
uses: michmich112/extract-version@main
|
|
with:
|
|
version-file: info.xml
|
|
schema: major.minor.build
|
|
|
|
- name: zip
|
|
run: |
|
|
mkdir temp_dir
|
|
rm .git -rf
|
|
find . -type f -not -path '*/temp_dir/*' -exec cp --parents '{}' './temp_dir/' \;
|
|
mv temp_dir ${{ env.PLUGIN_NAME }}
|
|
zip -r ${{ env.PLUGIN_NAME }}.zip ${{ env.PLUGIN_NAME }}
|
|
|
|
- name: release
|
|
uses: softprops/action-gh-release@v1
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
files: ./${{ env.PLUGIN_NAME }}.zip |