Skip to content

Commit

Permalink
Fix: zip -> vvpp
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed May 30, 2024
1 parent 12fe2fa commit 39b800c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:
workflow_dispatch:
inputs:
version:
description: 'Version to build'
description: "Version to build"
required: true
default: '0.0.0'
default: "0.0.0"

defaults:
run:
Expand Down Expand Up @@ -94,11 +94,13 @@ jobs:
cp crates/cantari/engine_manifest.json archive
cd archive
zip -r ../cantari-${{ steps.version.outputs.version }}${{ matrix.suffix }}.zip .
cd ..
mv cantari-${{ steps.version.outputs.version }}${{ matrix.suffix }}.zip cantari-${{ steps.version.outputs.version }}${{ matrix.suffix }}.vvpp
- name: Create Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.version.outputs.version }}
prerelease: ${{ steps.version.outputs.prerelease }}
files: |
cantari-${{ steps.version.outputs.version }}${{ matrix.suffix }}.zip
cantari-${{ steps.version.outputs.version }}${{ matrix.suffix }}.vvpp

0 comments on commit 39b800c

Please sign in to comment.