Skip to content

Commit

Permalink
Pass artifacts between jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
cvbarros committed Dec 9, 2019
1 parent 8513e3c commit 5a4c7ca
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,20 @@ jobs:
steps:
- uses: actions/checkout@v1
- uses: ./.github/builder
- uses: actions/upload-artifact@v1
with:
name: binaries
path: .release
publish:
name: Publish
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Dump gitconfig
run: |
cat ./.git/config
- uses: actions/download-artifact@v1
with:
name: binaries
path: .release
- name: github-upload-release
uses: docker://moonswitch/github-upload-release:master
env:
Expand Down

0 comments on commit 5a4c7ca

Please sign in to comment.