add guidebook upload steps

This commit is contained in:
Jonathan Shook 2020-03-09 17:56:13 -05:00 committed by GitHub
parent ee7c52aee3
commit e4c0fcd08c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,12 +25,20 @@ jobs:
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B verify --file pom.xml
- name: upload artifacts
run: mkdir staging && cp nb/target/nb.jar nb/appimage/target/nb staging
- uses: actions/upload-artifact@v1
with:
name: binaries
path: staging
- name: upload guidebook
run: mkdir guidebook && cp -R nb/target/guidebook guidebook
- uses: actions/upload-artifact@v1
with:
name: guidebook
path: guidebook
# - name: Run a one-line script
# run: echo Hello, world!