Skip to content

Commit e94503c

Browse files
committed
Fix archive name in release from tag.
1 parent 219dd96 commit e94503c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ jobs:
8585
path: ./install
8686

8787
- name: Create UI Base archive
88-
run: 7z a uibase.7z ./install/*
88+
run: 7z a uibase_${{ github.ref_name }}.7z ./install/*
8989

9090
- name: Publish Release
9191
env:
9292
GH_TOKEN: ${{ github.token }}
9393
GH_REPO: ${{ github.repository }}
94-
run: gh release create --draft=false --notes="${{ github.ref_name }}" "${{ github.ref_name }}" ./uibase.7z
94+
run: gh release create --draft=false --notes="${{ github.ref_name }}" "${{ github.ref_name }}" ./uibase_${{ github.ref_name }}.7z

0 commit comments

Comments
 (0)