Add drone release for addons

This commit is contained in:
Philipp Holzer 2021-09-02 12:22:42 +02:00
parent 826fa88843
commit 5bba4bee00
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
1 changed files with 11 additions and 11 deletions

View File

@ -109,21 +109,21 @@ steps:
- apt-get update
- apt-get install bzip2
- export VERSION="$(cat VERSION)"
- export RELEASEADDONS="friendica-addons-$VERSION"
- export ARTIFACTADDONS="$RELEASEADDON.tar.gz"
- export RELEASE="friendica-addons-$VERSION"
- export ARTIFACT="$RELEASE.tar.gz"
- mkdir ./build
- # Create artifact for friendica-addons
- tar
--exclude='./.tx'
--exclude='./.git'
--exclude='./.editorconfig'
--exclude='./.gitattributes'
--exclude='./.gitignore'
--exclude='./.drone.yml'
--exclude='./**/*/messages.po'
-cvjf ./build/$ARTIFACTADDONS --transform "s,^addon,$RELEASEADDONS," addon/
--exclude='.tx'
--exclude='.git'
--exclude='.editorconfig'
--exclude='.gitattributes'
--exclude='.gitignore'
--exclude='.drone.yml'
--exclude='**/*/messages.po'
-cvjf ./build/$ARTIFACT --transform "s,^addon,$RELEASE," addon/
- # calculate SHA256 checksum
- sha256sum ./build/$ARTIFACTADDONS > ./build/$ARTIFACTADDONS.sha256
- sha256sum ./build/$ARTIFACT > ./build/$ARTIFACT.sha256
- ls -lh ./build
- name: Upload artifacts
image: alpine