complete packaging, by creating and uploading artifacts (after build)
drkameleon yaniszaf@gmail.com
Wed, 20 Jan 2021 19:26:01 +0100
1 files changed,
10 insertions(+),
1 deletions(-)
jump to
M
.github/workflows/release.yml
→
.github/workflows/release.yml
@@ -65,4 +65,13 @@ - name: Build (MacOS)
run: nim c -d:release -d:ssl -o:min min if: matrix.os == 'macos-latest' - + - name: Create artifact + run: | + install -m 0755 ./min . + tar czf min-${{runner.os}}.tar.gz min README.md LICENSE + + - name: Upload Artifact + uses: 'actions/upload-artifact@v1' + with: + name: min-${{runner.os}}.tar.gz + path: min-${{runner.os}}.tar.gz