Merge pull request #1 from jdev-org/docs-opened #14
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
name: create develop zip extension | |
on: | |
push: | |
branches: | |
- develop | |
# This workflow will run tests for npm and java | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout branch" | |
uses: actions/checkout@v3 | |
with: | |
ref: develop | |
# only keep branche submodule version | |
- name: "Checkout submodules" | |
run: git submodule update --init --recursive | |
- name: "setting up npm" | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '12.x' | |
############### | |
# NPM CHECKS | |
############# | |
- name: npm install | |
run: npm install | |
- name: build | |
run: npm run ext:build | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v2 | |
with: | |
name: docs-manager-develop | |
path: dist/DocsManager.zip | |
retention-days: 5 |