NLP-ENGINE-425 removed io.h from cg.h #220
Workflow file for this run
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: Attach Engine File Assets | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
zip_files: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "16.x" | |
- run: git submodule update --init --recursive | |
- uses: papeloto/action-zip@v1 | |
with: | |
files: data/ | |
recursive: false | |
dest: nlpengine.zip | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: nlpengine.zip | |
path: ${{ github.workspace }}/nlpengine.zip |