mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Recursive create the pkgname directory when creating a release tarball
This step without the '-p' works fine for regular releases but it can fail if the CI is running when this file changes or on a branch matching 'patch/ci-release-*'.
This commit is contained in:
parent
6bfc309741
commit
38b9bdf871
1 changed files with 1 additions and 1 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -255,7 +255,7 @@ jobs:
|
||||||
exe=".exe"
|
exe=".exe"
|
||||||
fi
|
fi
|
||||||
pkgname=helix-$GITHUB_REF_NAME-$platform
|
pkgname=helix-$GITHUB_REF_NAME-$platform
|
||||||
mkdir $pkgname
|
mkdir -p $pkgname
|
||||||
cp $source/LICENSE $source/README.md $pkgname
|
cp $source/LICENSE $source/README.md $pkgname
|
||||||
mkdir $pkgname/contrib
|
mkdir $pkgname/contrib
|
||||||
cp -r $source/contrib/completion $pkgname/contrib
|
cp -r $source/contrib/completion $pkgname/contrib
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue