diff --git a/fluffychat.yml b/fluffychat.yml index 2fe6257..6fd6a52 100644 --- a/fluffychat.yml +++ b/fluffychat.yml @@ -20,11 +20,21 @@ steps: - exit - pacman -U flutter-*-x86_64.pkg.tar --noconfirm - cd .. - - flutter config --no-analytics - - flutter config --enable-linux-desktop - - flutter clean - - flutter pub get - - flutter build linux --release --verbose + - sh scripts/build-linux.sh - ls -al build/linux/x64/release +- name: release + image: plugins/gitea-release + environment: + #only for testing + DRONE_BUILD_EVENT: tag + settings: + base_url: https://git.entr0py.de + api_key: + from_secret: gitea_token + files: build/linux/x64/release/bundle/* + note: CHANGELOG.md + checksum: + - md5 + - sha256 ...