File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -117,6 +117,12 @@ jobs:
117117 mkdir -p artifacts
118118 cp target/x86_64-unknown-linux-gnu/release/nnli artifacts/nnli-linux-x86_64
119119
120+ - name : Upload Linux Artifacts
121+ uses : actions/upload-artifact@v2
122+ with :
123+ name : linux-artifacts
124+ path : artifacts/*
125+
120126 build-osx :
121127 needs : create-version-branch
122128 if : needs.create-version-branch.outputs.VERSION_UPDATED == 'true'
@@ -142,13 +148,30 @@ jobs:
142148 mkdir -p artifacts
143149 cp target/x86_64-apple-darwin/release/nnli artifacts/nnli-macos-x86_64
144150
151+ - name : Upload MacOS Artifacts
152+ uses : actions/upload-artifact@v2
153+ with :
154+ name : macos-artifacts
155+ path : artifacts/*
156+
145157 create-release :
146158 needs :
147159 - build
148160 - build-osx
149161 if : needs.create-version-branch.outputs.VERSION_UPDATED == 'true'
150162 runs-on : ubuntu-latest
151163 steps :
164+ - name : Download Linux Artifacts
165+ uses : actions/download-artifact@v2
166+ with :
167+ name : linux-artifacts
168+ path : artifacts/
169+
170+ - name : Download MacOS Artifacts
171+ uses : actions/download-artifact@v2
172+ with :
173+ name : macos-artifacts
174+ path : artifacts/
152175
153176 - name : Create Release
154177 uses : softprops/action-gh-release@v1
Original file line number Diff line number Diff line change 11[package ]
22name = " nnli"
3- version = " 0.0.20 "
3+ version = " 0.0.21 "
44edition = " 2021"
55description = " 🔭 interactively explore `onnx` networks in your CLI."
66license = " MIT"
You can’t perform that action at this time.
0 commit comments