Loosening test around lgged lines that change in versions of maven #50
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/* |