From 57823bccea46857321c5ba72e0a702de72fb0fa9 Mon Sep 17 00:00:00 2001 From: ohayoyogi <77435669+ohayoyogi@users.noreply.github.com> Date: Tue, 9 Jan 2024 19:51:46 +0900 Subject: [PATCH] Update release-zip.yml --- .github/workflows/release-zip.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-zip.yml b/.github/workflows/release-zip.yml index f742603..c01dad5 100644 --- a/.github/workflows/release-zip.yml +++ b/.github/workflows/release-zip.yml @@ -16,7 +16,8 @@ jobs: - name: zip files run: | cd ../ - zip -r blender-exporter-colmap_${{ github.ref_name }}.zip blender-exporter-colmap/__init__.py + mkdir -p /dist + zip -r /dist/blender-exporter-colmap_${{ github.ref_name }}.zip blender-exporter-colmap/__init__.py - name: Create Release uses: softprops/action-gh-release@v1 with: @@ -24,6 +25,6 @@ jobs: tag_name: "${{ github.ref_name }}" draft: true files: | - blender-exporter-colmap_${{ github.ref_name }}.zip + /dist/blender-exporter-colmap_${{ github.ref_name }}.zip prerelease: false target_commitish: main