Skip to content

Commit

Permalink
Merge pull request #18 from gardenlinux/ignore
Browse files Browse the repository at this point in the history
Update readme
  • Loading branch information
Vincinator authored Aug 20, 2024
2 parents 0573580 + 017bc02 commit 95eac93
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,23 @@ git commit
git tag <GL_VERSION>.1
git push origin <GL_VERSION>.1
```

## 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.

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 95eac93

Please sign in to comment.