From 84dcc3312242058b93eb6f654639399e7a4c23eb Mon Sep 17 00:00:00 2001 From: Clemens Date: Fri, 22 Sep 2023 12:02:11 +0200 Subject: [PATCH] remove realeasing.md --- doc/Releasing.md | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 doc/Releasing.md diff --git a/doc/Releasing.md b/doc/Releasing.md deleted file mode 100644 index b4f09af..0000000 --- a/doc/Releasing.md +++ /dev/null @@ -1,41 +0,0 @@ -# Release process - -## ... for testing (snapshots) - -Make sure your clojars.org credentials are correctly set in your ~/.lein/profiles.clj file. - -``` bash -git add . -git commit -``` - -``` bash -lein deploy # or lein deploy clojars -``` - -## ... for stable release - -Make sure tags are protected in gitlab: -Repository Settings -> Protected Tags -> set \*.\*.\* as tag and save. - -``` bash -git checkout main # for old projects replace main with master -git add . -git commit -``` - -Execute tests - -``` bash -shadow-cljs compile test -node target/node-tests.js -lein test -``` - -Release with type (NONE, PATCH, MINOR, MAJOR): -``` bash -RELEASE_TYPE=[TYPE] pyb prepare_release after_publish - -``` - -Done.