Modifications to support conversion from ESM in to CJS for the execut… #52
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: Publish Executables | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
publish: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build executables | |
run: | | |
npm run build | |
npm run build-exe | |
- name: Attach artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: executables | |
path: cli/* |