summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkoverstreet <kent.overstreet@gmail.com>2025-09-17 19:05:29 -0400
committerGitHub <noreply@github.com>2025-09-17 19:05:29 -0400
commit82ca9d4dfae40350604d63e281182b29e37d86b1 (patch)
tree5434ddceaabc3bb73b12b1c5a7c3c3331ae3ecff
parent2303fad2be9a5b6b68511872924ec60e9f53cbb3 (diff)
parent1b560a9a35acce819695718dba936d501fe5c63e (diff)
Merge pull request #408 from LebedevRI/apt-readme
deb repo: readme fixse
-rw-r--r--.github/workflows/deb-publish.yml31
1 files changed, 20 insertions, 11 deletions
diff --git a/.github/workflows/deb-publish.yml b/.github/workflows/deb-publish.yml
index b87160de..9e1713e1 100644
--- a/.github/workflows/deb-publish.yml
+++ b/.github/workflows/deb-publish.yml
@@ -141,17 +141,26 @@ jobs:
To add this repository to your computer, do:
- wget -qO- https://apt.bcachefs.org/apt.bcachefs.org.asc | sudo tee /etc/apt/trusted.gpg.d/apt.bcachefs.org.asc
- # Fingerprint: ${{ secrets.GPG_SIGNING_SUBKEY_FINGERPRINT }}
- sudo cat > "/etc/apt/sources.list.d/apt.bcachefs.org.sources" <<EOF
- Types: deb deb-src
- URIs: https://apt.bcachefs.org/unstable/
- Suites: bcachefs-tools-snapshot # or -release
- Components: main
- Signed-By: /etc/apt/trusted.gpg.d/apt.bcachefs.org.asc
- EOF
- sudo apt update
- sudo apt install bcachefs-tools
+ wget -qO- https://apt.bcachefs.org/apt.bcachefs.org.asc | sudo tee /etc/apt/trusted.gpg.d/apt.bcachefs.org.asc
+ # Fingerprint: ${{ secrets.GPG_SIGNING_SUBKEY_FINGERPRINT }}
+ sudo cat > "/etc/apt/sources.list.d/apt.bcachefs.org.sources" <<EOF
+ Types: deb deb-src
+ URIs: https://apt.bcachefs.org/unstable/
+ # Or replace unstable with your distro's release name
+ Suites: bcachefs-tools-snapshot
+ # or:
+ # Suites: bcachefs-tools-release
+ Components: main
+ Signed-By: /etc/apt/trusted.gpg.d/apt.bcachefs.org.asc
+ EOF
+ sudo apt update
+ sudo apt install bcachefs-tools
+
+
+ Or you can use add-apt-repository tool:
+
+
+ sudo add-apt-repository "deb https://apt.bcachefs.org/unstable bcachefs-tools-snapshot main"