feat(installer): new dll and installer #17
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: CD | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- '**/README.txt' | |
- '**/README.md' | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- '**/README.txt' | |
- '**/README.md' | |
jobs: | |
build: | |
name: Build and release Morpho | |
runs-on: windows-latest | |
steps: | |
- name: Checkout master branch | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
submodules: true | |
- name: zip Examples | |
run: | | |
echo "Check" | |
ls deploy | |
echo "Create zip file" | |
Compress-Archive -Path deploy\examples\* -DestinationPath Examples.zip | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
- name: Semantic release | |
uses: cycjimmy/semantic-release-action@v3 | |
id: semantic | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |