From 2037ae1cbf2858bbd3e567955f999b74a2c4398c Mon Sep 17 00:00:00 2001 From: Matthew Peveler Date: Tue, 2 Jun 2020 01:09:14 -0400 Subject: fix release action workflow for next release Signed-off-by: Matthew Peveler --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.github/workflows/release.yml') diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3089ccd..38d3164 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: run: docker build . -t asciidoc - name: Build distributions - run: docker run --rm -v $(pwd):/srv/asciidoc asciidoc /bin/bash -c "make dist" + run: docker run --rm -v $(pwd)/build:/srv/asciidoc/build asciidoc /bin/bash -c "make dist" - name: Upload asciidoc-${{ github.event.release.tag_name }}.zip id: upload-release-asset-zip @@ -22,7 +22,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ github.event.release.upload_url }} - asset_path: ./asciidoc-${{ github.event.release.tag_name }}.zip + asset_path: ./build/asciidoc-${{ github.event.release.tag_name }}.zip asset_name: asciidoc-${{ github.event.release.tag_name }}.zip asset_content_type: application/zip @@ -33,6 +33,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ github.event.release.upload_url }} - asset_path: ./asciidoc-${{ github.event.release.tag_name }}.tar.gz + asset_path: ./build/asciidoc-${{ github.event.release.tag_name }}.tar.gz asset_name: asciidoc-${{ github.event.release.tag_name }}.tar.gz asset_content_type: application/gzip -- cgit v1.2.1