Try to fix compress step
continuous-integration/drone/push Build encountered an error Details

This commit is contained in:
IamTheFij 2021-01-08 17:38:55 -05:00
parent 06ea8bea30
commit e7353bb8df
2 changed files with 4 additions and 1 deletions

View File

@ -53,7 +53,7 @@ steps:
- name: compress binaries for release
image: busybox
- find ./dist -type f -perm +111 -execdir tar -czvf {}.tar.gz {} \;
- ./compress_release.sh
- name: upload gitea pre-release
image: plugins/gitea-release

3
compress_release.sh Executable file
View File

@ -0,0 +1,3 @@
#! /bin/bash
find ./dist -type f -perm +111 -execdir tar -czvf {}.tar.gz {} \;