Skip to content

Commit 3771c29

Browse files
committed
Release rclone with golang-1.24.11 on 15.12.2025
1 parent f5e2637 commit 3771c29

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ required:
2323
- set `golang` version within `./toolchain.env`
2424
- check `<MAJOR>.<MINOR>` used rclone version in `rclone.env` and produced
2525
targets within `targets.env`
26-
- update `./make_release.sh` script in case dependant components are rclone
26+
- update `./make_release.sh` script in case dependant components of rclone
2727
must be upgraded
28+
- update ./release.env to set a release `<TIMESTAMP>`: `echo TIMESTAMP=$(date +%Y%m%d%H%M%S) > ./release.env`
2829
- run `./make_release.sh` to produce necessary binaries:
29-
- `golang-<GO_VERSION>-<COMMIT>` folder with necessary structure and binaries
30+
- `golang-<GO_VERSION>-<COMMIT>-<TIMESTAMP>` folder with necessary structure and binaries
3031
should be produced
3132
- push local changes to GitHub
3233
- make tagged release `golang-<GO_VERSION>-<COMMIT>` with artifacts and

make_release.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ set -e
55
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
66
cd ${SCRIPT_DIR}
77
. ./toolchain.env
8+
. ./release.env
89

910
printf "Making release of rclone for ArangoDB with $GO_VERSION...\n\n"
1011

11-
RELEASE_TAG="${GO_VERSION//:/-}-$(git rev-parse --short HEAD)"
12+
RELEASE_TAG="${GO_VERSION//:/-}-$(git rev-parse --short HEAD)_$TIMESTAMP"
1213
RELEASE_OUTPUT=${SCRIPT_DIR}/${RELEASE_TAG}
1314
rm -rf ${RELEASE_OUTPUT} && mkdir -p ${RELEASE_OUTPUT}
1415

release.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TIMESTAMP=20251215145812

0 commit comments

Comments
 (0)