From 8f5e42dd61f2c47521a304323577c3b883da52a3 Mon Sep 17 00:00:00 2001 From: irvinklause Date: Wed, 4 Feb 2026 07:38:44 +0000 Subject: [PATCH] chore: add sending of release_date to s3 --- deploy/deploy_s3.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy/deploy_s3.sh b/deploy/deploy_s3.sh index 893a78ef0..193d26079 100755 --- a/deploy/deploy_s3.sh +++ b/deploy/deploy_s3.sh @@ -14,6 +14,7 @@ cd dist echo $VERSION >> VERSION curl -s https://api.github.com/repos/amnezia-vpn/amnezia-client/releases/tags/$VERSION | jq -r .body | tr -d '\r' > CHANGELOG +curl -s https://api.github.com/repos/amnezia-vpn/amnezia-client/releases/tags/$VERSION | jq -r .published_at > RELEASE_DATE if [[ $(cat CHANGELOG) = null ]]; then echo '::error::Release does not exists. Exiting with error...'