summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2020-06-02 01:09:14 -0400
committerMatthew Peveler <matt.peveler@gmail.com>2020-06-02 01:09:14 -0400
commit2037ae1cbf2858bbd3e567955f999b74a2c4398c (patch)
tree312d893f1dd5c6795df122effaa6969c48bb7c4d /.github/workflows
parent3001d22e806181ec029931aef0e25c15f4ac8ee0 (diff)
downloadasciidoc-py3-2037ae1cbf2858bbd3e567955f999b74a2c4398c.tar.gz
fix release action workflow for next release
Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/release.yml6
1 files changed, 3 insertions, 3 deletions
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