mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
chore(builds): disable verbose output for tar
This commit is contained in:
parent
cb27b0993d
commit
cc83d05207
1 changed files with 1 additions and 2 deletions
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
|
@ -2,7 +2,6 @@ on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
|
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
|
||||||
- 'beta'
|
|
||||||
|
|
||||||
name: Upload Release Assets
|
name: Upload Release Assets
|
||||||
|
|
||||||
|
@ -41,7 +40,7 @@ jobs:
|
||||||
rm -rf .git ./node_modules ./storage/search-indexes/*.index ./koel.db ./.env
|
rm -rf .git ./node_modules ./storage/search-indexes/*.index ./koel.db ./.env
|
||||||
cd ../
|
cd ../
|
||||||
zip -r /tmp/koel-${{ steps.get_version.outputs.VERSION }}.zip koel/
|
zip -r /tmp/koel-${{ steps.get_version.outputs.VERSION }}.zip koel/
|
||||||
tar -zcvf /tmp/koel-${{ steps.get_version.outputs.VERSION }}.tar.gz koel/
|
tar -zcf /tmp/koel-${{ steps.get_version.outputs.VERSION }}.tar.gz koel/
|
||||||
- name: Create release
|
- name: Create release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: actions/create-release@v1
|
uses: actions/create-release@v1
|
||||||
|
|
Loading…
Reference in a new issue