Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
5kt committed Jul 31, 2024
1 parent ff02eb8 commit 77237f4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,17 @@ git commit
git tag <GL_VERSION>.1
git push origin <GL_VERSION>.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
```

0 comments on commit 77237f4

Please sign in to comment.