From 77237f4bf75cc6cc4e2d3655f313b2a13c1c1094 Mon Sep 17 00:00:00 2001 From: Stefan Catargiu <13122921+5kt@users.noreply.github.com> Date: Wed, 31 Jul 2024 05:37:09 +0000 Subject: [PATCH 1/2] Update readme --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 26a3eec..e0283cb 100644 --- a/README.md +++ b/README.md @@ -65,3 +65,17 @@ git commit git tag .1 git push origin .1 ``` + +## Remove GardenLinux packages from the repo + +If, for whatever reason, we need to switch back to debian mirrored packages, a null release (with no content/assets) should be created. !! DO NOT RENAME PACKAGE REPOS !! This is going to break future patch releases, if needed. Also, you might want to disable github actions, in order to prevent version updates from overwriting the null release. +Create an empty branch, a null tag, push everything and then create a release. + +``` +git checkout --orphan nullbranch +git reset +git commit --allow-empty -m "null" +git push origin nullbranch +git tag null +git push origin null +``` From 017bc0299fab779a49d3dc65c9e2a7529c2da270 Mon Sep 17 00:00:00 2001 From: Florian Wilhelm <2292245+fwilhe@users.noreply.github.com> Date: Wed, 31 Jul 2024 10:04:40 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e0283cb..4b56a8a 100644 --- a/README.md +++ b/README.md @@ -66,9 +66,15 @@ git tag .1 git push origin .1 ``` -## Remove GardenLinux packages from the repo +## Remove Garden Linux packages from the repo + +If, for whatever reason, we need to switch back to debian mirrored packages, a null release (with no content/assets) should be created. + +> [!IMPORTANT] +> DO NOT RENAME PACKAGE REPOS + +This is going to break future patch releases, if needed. Also, you should disable github actions for that repo, in order to prevent version updates from overwriting the null release. -If, for whatever reason, we need to switch back to debian mirrored packages, a null release (with no content/assets) should be created. !! DO NOT RENAME PACKAGE REPOS !! This is going to break future patch releases, if needed. Also, you might want to disable github actions, in order to prevent version updates from overwriting the null release. Create an empty branch, a null tag, push everything and then create a release. ```