diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2020-07-10 13:15:23 +0200 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2020-07-10 13:15:23 +0200 |
commit | fbf6c31131de45d49eae141b8a5a059a4cbe4eef (patch) | |
tree | b75050dec1860e11726effc9fc43a64a84f0f9fe /.github/workflows | |
parent | 9828b5133870943106f78c734f0763829500e272 (diff) | |
download | ghdl-fbf6c31131de45d49eae141b8a5a059a4cbe4eef.tar.gz ghdl-fbf6c31131de45d49eae141b8a5a059a4cbe4eef.tar.bz2 ghdl-fbf6c31131de45d49eae141b8a5a059a4cbe4eef.zip |
ci: actions/upload-artifact supports multiple paths now
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/push.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 5b7851f88..936dc758f 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -87,11 +87,9 @@ jobs: - uses: actions/upload-artifact@v2 with: name: ${{ matrix.task.installs }}-${{ matrix.task.pkg }}-builddir - path: ./dist/msys2-mingw/${{ matrix.task.pkg }}/src/ - - uses: actions/upload-artifact@v2 - with: - name: ${{ matrix.task.installs }}-${{ matrix.task.pkg }}-builddir - path: ./dist/msys2-mingw/${{ matrix.task.pkg }}/pkg/ + path: | + ./dist/msys2-mingw/${{ matrix.task.pkg }}/src/ + ./dist/msys2-mingw/${{ matrix.task.pkg }}/pkg/ - uses: actions/upload-artifact@v2 with: path: ./dist/msys2-mingw/${{ matrix.task.pkg }}/mingw-*ghdl*.pkg.tar.zst |