From fdc91f7c2982ce68d5c95e233b12203f5a2d2b6f Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:00:36 +0200 Subject: [PATCH 01/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 8 ++++++++ .woodpecker.yml | 34 ---------------------------------- 2 files changed, 8 insertions(+), 34 deletions(-) create mode 100644 .gitea/workflows/build.yaml delete mode 100644 .woodpecker.yml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..c8a4ba3 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,8 @@ +name: Build profile +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: whereis git diff --git a/.woodpecker.yml b/.woodpecker.yml deleted file mode 100644 index 0915f2f..0000000 --- a/.woodpecker.yml +++ /dev/null @@ -1,34 +0,0 @@ -steps: - update_profile: - image: alpine/git - secrets: [ssh_priv_key] - commands: - - git config --global user.email ci@gitnet.fr - - git config --global user.name CI - - apk add wget - - cp README.tpl.md README.md - - ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md - - git status - - git add . - - git commit -m "Build ${CI_BUILD_NUMBER}" || true - - mkdir -p ~/.ssh - - eval $(ssh-agent -s) - - echo "$SSH_PRIV_KEY" | tr -d '\r' | ssh-add - - - 'echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config' - - git remote add repo git@gitnet.fr:deblan/.profile.git - - git push repo main || true - when: - event: [deployment, cron] - - # deploy: - # image: appleboy/drone-git-push - # commands: - # settings: - # branch: main - # remote: git@gitnet.fr:deblan/.profile.git - # force: false - # commit: false - # ssh_key: - # from_secret: ssh_priv_key - # when: - # event: [push, deployment, cron] From 45f1d26f00704ab9ad4faf17371a9c741e48f05c Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:01:56 +0200 Subject: [PATCH 02/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index c8a4ba3..08b2339 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -2,7 +2,8 @@ name: Build profile on: [push] jobs: - Explore-Gitea-Actions: + Build: runs-on: ubuntu-latest steps: - run: whereis git + - run: whereis wget From f7fd74804102021bf9b138e73e9c79bfb4364d2d Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:02:30 +0200 Subject: [PATCH 03/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 08b2339..cefaa5d 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -7,3 +7,4 @@ jobs: steps: - run: whereis git - run: whereis wget + - run: id -a From c2221ede0328d195434e97e840ffd5a8fc007080 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:05:36 +0200 Subject: [PATCH 04/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index cefaa5d..076bc2e 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -5,6 +5,21 @@ jobs: Build: runs-on: ubuntu-latest steps: - - run: whereis git - - run: whereis wget - - run: id -a + - run: | + mkdir -p ~/.ssh + eval $(ssh-agent -s) + echo "$SSH_PRIV_KEY" | tr -d '\r' | ssh-add - + echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config + - run: | + git config --global user.email ci@gitnet.fr + git config --global user.name CI + - run: | + cp README.tpl.md README.md + ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md + - run: | + git status + git add . + git commit -m "Build ${CI_BUILD_NUMBER}" || true + git remote add repo git@gitnet.fr:deblan/.profile.git + git push repo main || true + From f55609945e9be99086bdd67dfb6cf432cb2fc958 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:06:12 +0200 Subject: [PATCH 05/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 076bc2e..8314b9c 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -6,20 +6,20 @@ jobs: runs-on: ubuntu-latest steps: - run: | - mkdir -p ~/.ssh - eval $(ssh-agent -s) - echo "$SSH_PRIV_KEY" | tr -d '\r' | ssh-add - - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config + mkdir -p ~/.ssh + eval $(ssh-agent -s) + echo "$SSH_PRIV_KEY" | tr -d '\r' | ssh-add - + echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config - run: | - git config --global user.email ci@gitnet.fr - git config --global user.name CI + git config --global user.email ci@gitnet.fr + git config --global user.name CI - run: | - cp README.tpl.md README.md - ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md + cp README.tpl.md README.md + ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md - run: | - git status - git add . - git commit -m "Build ${CI_BUILD_NUMBER}" || true - git remote add repo git@gitnet.fr:deblan/.profile.git - git push repo main || true + git status + git add . + git commit -m "Build ${CI_BUILD_NUMBER}" || true + git remote add repo git@gitnet.fr:deblan/.profile.git + git push repo main || true From 12a282c82d69c58eb588f8ced253ecad4aa30af0 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:08:54 +0200 Subject: [PATCH 06/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 8314b9c..b2d63d1 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -5,6 +5,8 @@ jobs: Build: runs-on: ubuntu-latest steps: + - name: Check out repository code + uses: actions/checkout@v3 - run: | mkdir -p ~/.ssh eval $(ssh-agent -s) From 9df2ecd29ed4af1265386f26892649bb71d57f31 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:20:48 +0200 Subject: [PATCH 07/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index b2d63d1..3d5ea87 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -10,7 +10,7 @@ jobs: - run: | mkdir -p ~/.ssh eval $(ssh-agent -s) - echo "$SSH_PRIV_KEY" | tr -d '\r' | ssh-add - + echo "${{ secrets.SSH_PRIVATE_KEY }}" | tr -d '\r' | ssh-add - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config - run: | git config --global user.email ci@gitnet.fr @@ -21,7 +21,7 @@ jobs: - run: | git status git add . - git commit -m "Build ${CI_BUILD_NUMBER}" || true + git commit -m "Build ${{ gitea.job }}" || true git remote add repo git@gitnet.fr:deblan/.profile.git - git push repo main || true + #git push repo main || true From 9647254c37be3797f2a4e8f236db4e4dcbb9d261 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:21:23 +0200 Subject: [PATCH 08/45] [wip] gitea actions --- bin/rss | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/rss b/bin/rss index e5fdf94..d81247e 100755 --- a/bin/rss +++ b/bin/rss @@ -1,7 +1,6 @@ #!/bin/sh set -eu -set -x usage() { printf "Usage: %s [-l DEBUG_LEVEL] [-f URL] [-h]\n" "$0" From 228abb33418c79c23b5e8d15fddbd7bcc6fc57ab Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:21:47 +0200 Subject: [PATCH 09/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 3d5ea87..d8b593f 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -18,6 +18,7 @@ jobs: - run: | cp README.tpl.md README.md ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md + cat README.md - run: | git status git add . From eae2902473e66de981aa3febaa385f4a05f65d8e Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:22:28 +0200 Subject: [PATCH 10/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index d8b593f..0053f50 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -16,7 +16,9 @@ jobs: git config --global user.email ci@gitnet.fr git config --global user.name CI - run: | + set -x cp README.tpl.md README.md + cat README.md ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md cat README.md - run: | From 5b92828a3120f410900f7610cafaa7aa991881df Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:23:09 +0200 Subject: [PATCH 11/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 0053f50..c2cb1f9 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -18,9 +18,9 @@ jobs: - run: | set -x cp README.tpl.md README.md - cat README.md - ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md - cat README.md + ls -lah + #./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md + #cat README.md - run: | git status git add . From bf59aeb3c809245d55109990d8db9dc66f74b3fd Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:23:29 +0200 Subject: [PATCH 12/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index c2cb1f9..cdef01e 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -18,7 +18,7 @@ jobs: - run: | set -x cp README.tpl.md README.md - ls -lah + ls -lah bin/ #./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md #cat README.md - run: | From 7f25581d7b126bacc4320ebddd91364e27db2cca Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:25:06 +0200 Subject: [PATCH 13/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index cdef01e..f116472 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -19,7 +19,8 @@ jobs: set -x cp README.tpl.md README.md ls -lah bin/ - #./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md + sh ./bin/rss -f https://www.deblan.io/RSS + sh ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md #cat README.md - run: | git status From 227f65476d953e9bef64bc9ef971f3eab4a652e1 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:25:50 +0200 Subject: [PATCH 14/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index f116472..1f2e884 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -16,12 +16,10 @@ jobs: git config --global user.email ci@gitnet.fr git config --global user.name CI - run: | - set -x cp README.tpl.md README.md ls -lah bin/ - sh ./bin/rss -f https://www.deblan.io/RSS sh ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md - #cat README.md + cat README.md - run: | git status git add . From ca9fc52d3bde4d2294df7fc8e5095499fa29e2b0 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:33:32 +0200 Subject: [PATCH 15/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 1f2e884..6e1d374 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -18,7 +18,7 @@ jobs: - run: | cp README.tpl.md README.md ls -lah bin/ - sh ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md + ./bin/rss -f https://www.deblan.io/RSS # | head -n 10 >> README.md cat README.md - run: | git status From 279c353026621073f312e332ed7ba0a54e5f9f67 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:34:12 +0200 Subject: [PATCH 16/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 6e1d374..5704c29 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,9 +17,7 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - ls -lah bin/ - ./bin/rss -f https://www.deblan.io/RSS # | head -n 10 >> README.md - cat README.md + - run: "./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md" - run: | git status git add . From 3776f12d0361bda3b448ad4352ac374121d5f444 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:36:48 +0200 Subject: [PATCH 17/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 5704c29..e670f1f 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,7 +17,7 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - - run: "./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md" + ./bin/rss -f https://www.deblan.io/RSS | head -n 10 | tee -a README.md - run: | git status git add . From 878e7c45a725255eaca7939eb33268748e624131 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:37:18 +0200 Subject: [PATCH 18/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index e670f1f..b61752f 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,7 +17,7 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - ./bin/rss -f https://www.deblan.io/RSS | head -n 10 | tee -a README.md + ./bin/rss -f "https://www.deblan.io/RSS" | head -n 10 >> README.md - run: | git status git add . From b99cbb62e4f99ea621747e142cebdf0a08b606c7 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:37:42 +0200 Subject: [PATCH 19/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index b61752f..7f75168 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,7 +17,7 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - ./bin/rss -f "https://www.deblan.io/RSS" | head -n 10 >> README.md + ./bin/rss -f "https://www.deblan.io/RSS" | head -n 10 > README.md - run: | git status git add . From 70315eca96a632e1b0efac7b6411b7f099ea90fc Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:40:21 +0200 Subject: [PATCH 20/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 7f75168..227e3dd 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,7 +17,8 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - ./bin/rss -f "https://www.deblan.io/RSS" | head -n 10 > README.md + whereis head + ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md - run: | git status git add . From 68e39ef351c1400b6f1fd8dab7dd839415ad419d Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:40:52 +0200 Subject: [PATCH 21/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 227e3dd..6d12704 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,8 +17,7 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - whereis head - ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md + "./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md" - run: | git status git add . From 08a5a910286a939c4526140484a3a95aa520cfbd Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:41:14 +0200 Subject: [PATCH 22/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 6d12704..6b4b4a7 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,7 +17,7 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - "./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md" + ./bin/rss -f https://www.deblan.io/RSS | head -n 10 > README.md - run: | git status git add . From c0efd272eecfa529042f20c8ad66b2873513366b Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:41:40 +0200 Subject: [PATCH 23/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 6b4b4a7..8e6482e 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,7 +17,7 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - ./bin/rss -f https://www.deblan.io/RSS | head -n 10 > README.md + ./bin/rss -f https://www.deblan.io/RSS >> README.md - run: | git status git add . From 861828b4098f6189f3dba35afa71133c42f6f0f0 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:42:12 +0200 Subject: [PATCH 24/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 8e6482e..0637b32 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,7 +17,7 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - ./bin/rss -f https://www.deblan.io/RSS >> README.md + ./bin/rss -f https://www.deblan.io/RSS| head -n 10 >> README.md - run: | git status git add . From e2c59c7d73ea3514b4adce81064c5622e0ce2cd3 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:43:10 +0200 Subject: [PATCH 25/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 0637b32..06ef433 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,7 +17,7 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - ./bin/rss -f https://www.deblan.io/RSS| head -n 10 >> README.md + ./bin/rss -f https://www.deblan.io/RSS | tail -n 10 >> README.md - run: | git status git add . From ce684f4593f737ee0ac69824643a85652b1ff10e Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:43:30 +0200 Subject: [PATCH 26/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 06ef433..5685a79 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,6 +17,7 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md + man head ./bin/rss -f https://www.deblan.io/RSS | tail -n 10 >> README.md - run: | git status From da731a53ced474896bb5821efaab02e56150a0b1 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:44:15 +0200 Subject: [PATCH 27/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 5685a79..801ac39 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,8 +17,8 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - man head - ./bin/rss -f https://www.deblan.io/RSS | tail -n 10 >> README.md + which head + ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md - run: | git status git add . From 0be717df425430b8f58bfe61cfee5cf4619b8545 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:44:56 +0200 Subject: [PATCH 28/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 801ac39..e9d32df 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -18,7 +18,7 @@ jobs: - run: | cp README.tpl.md README.md which head - ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md + ./bin/rss -f https://www.deblan.io/RSS | head >> README.md - run: | git status git add . From 3544af80c915ae7532ca8734bc32069bfe703764 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:46:18 +0200 Subject: [PATCH 29/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index e9d32df..03262d6 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,7 +17,8 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - which head + apt-get update && apt-get install -y man + man head ./bin/rss -f https://www.deblan.io/RSS | head >> README.md - run: | git status From 2760eb021936e459e22033bf3f53a1ef3c37ef37 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:47:25 +0200 Subject: [PATCH 30/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 03262d6..56c22fe 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,9 +17,7 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - apt-get update && apt-get install -y man - man head - ./bin/rss -f https://www.deblan.io/RSS | head >> README.md + ./bin/rss -f https://www.deblan.io/RSS | head -n10 >> README.md - run: | git status git add . From 7448aff25ddd3a93d5e30f0bbee6f94f291a0122 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 22:48:04 +0200 Subject: [PATCH 31/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 56c22fe..b0d82e9 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,7 +17,7 @@ jobs: git config --global user.name CI - run: | cp README.tpl.md README.md - ./bin/rss -f https://www.deblan.io/RSS | head -n10 >> README.md + ./bin/rss -f https://www.deblan.io/RSS | head --lines=10 >> README.md - run: | git status git add . From 983b0b119f8dd5cecbdeb0a93546a4511e184d9b Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Oct 2023 23:01:21 +0200 Subject: [PATCH 32/45] [wip] gitea actions --- .gitea/workflows/build.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index b0d82e9..243db17 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -15,6 +15,9 @@ jobs: - run: | git config --global user.email ci@gitnet.fr git config --global user.name CI + - uses: actions/setup-node@v3 + with: + node-version: 16 - run: | cp README.tpl.md README.md ./bin/rss -f https://www.deblan.io/RSS | head --lines=10 >> README.md From 603790a792b4c7a45aa124a8e1d42d55cc245e70 Mon Sep 17 00:00:00 2001 From: CI Date: Mon, 6 Nov 2023 13:49:31 +0000 Subject: [PATCH 33/45] Build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b399033..6e047c6 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ This application is rather suitable for instances that activate a lot of applica ## Latest blog posts +* [Murph v1.23 et Custom Menu v3.11](https://www.deblan.io/post/658/murph-v1-23-custom-menu-v3-11) * [Matrix-Synapse : migrer de SQLite à PostgreSQL](https://www.deblan.io/post/655/matrix-synapse-migrer-de-sqlite-a-postgresql) * [Remote i3-wm WS : ma télécommande pour bureau GNU/Linux (v2)](https://www.deblan.io/post/654/remote-i3-wm-ws-ma-telecommande-pour-bureau-gnu-linux-v2) * [Signez la pétition pour empêcher la France d’obliger les navigateurs tels que Firefox de Mozilla à censurer des sites web](https://www.deblan.io/post/653/signez-la-petition-pour-empecher-la-france-d-obliger-les-navigateurs-tels-que-firefox-de-mozilla-a-censurer-des-sites-web) @@ -59,4 +60,3 @@ This application is rather suitable for instances that activate a lot of applica * [Capture, un reverse proxy pour analyser les requêtes de vos applications](https://www.deblan.io/post/648/capture-un-proxy-pour-analyser-les-requetes-de-vos-applications) * [Affaire du 8 décembre : le chiffrement des communications assimilé à un comportement terroriste](https://www.deblan.io/post/649/affaire-du-8-decembre-le-chiffrement-des-communications-assimile-a-un-comportement-terroriste) * [Un modèle pour démarrer un script shell](https://www.deblan.io/post/647/modele-pour-demarrer-script-shell) -* [Quoi de neuf sur les internets ? #1](https://www.deblan.io/post/646/quoi-de-neuf-sur-les-internets-1) From 5a41aeca4171e54272613cca7ef3c7f77a08115f Mon Sep 17 00:00:00 2001 From: CI Date: Tue, 2 Apr 2024 02:02:30 +0000 Subject: [PATCH 34/45] Build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e047c6..9589432 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ This application is rather suitable for instances that activate a lot of applica ## Latest blog posts +* [Anonymiser une base de données MySQL et PostgreSQL](https://www.deblan.io/post/660/anonymiser-une-base-de-donnees-mysql-et-postgresql) * [Murph v1.23 et Custom Menu v3.11](https://www.deblan.io/post/658/murph-v1-23-custom-menu-v3-11) * [Matrix-Synapse : migrer de SQLite à PostgreSQL](https://www.deblan.io/post/655/matrix-synapse-migrer-de-sqlite-a-postgresql) * [Remote i3-wm WS : ma télécommande pour bureau GNU/Linux (v2)](https://www.deblan.io/post/654/remote-i3-wm-ws-ma-telecommande-pour-bureau-gnu-linux-v2) @@ -59,4 +60,3 @@ This application is rather suitable for instances that activate a lot of applica * [Je n'ai rien à cacher.](https://www.deblan.io/post/650/je-nai-rien-a-cacher) * [Capture, un reverse proxy pour analyser les requêtes de vos applications](https://www.deblan.io/post/648/capture-un-proxy-pour-analyser-les-requetes-de-vos-applications) * [Affaire du 8 décembre : le chiffrement des communications assimilé à un comportement terroriste](https://www.deblan.io/post/649/affaire-du-8-decembre-le-chiffrement-des-communications-assimile-a-un-comportement-terroriste) -* [Un modèle pour démarrer un script shell](https://www.deblan.io/post/647/modele-pour-demarrer-script-shell) From 008571dc9f8666f9f670f157363bc08528f3c370 Mon Sep 17 00:00:00 2001 From: CI Date: Sat, 15 Jun 2024 14:08:58 +0000 Subject: [PATCH 35/45] Build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9589432..05975d8 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ This application is rather suitable for instances that activate a lot of applica ## Latest blog posts +* [Pour une France non fasciste !](https://www.deblan.io/post/665/pour-une-france-non-fasciste) * [Anonymiser une base de données MySQL et PostgreSQL](https://www.deblan.io/post/660/anonymiser-une-base-de-donnees-mysql-et-postgresql) * [Murph v1.23 et Custom Menu v3.11](https://www.deblan.io/post/658/murph-v1-23-custom-menu-v3-11) * [Matrix-Synapse : migrer de SQLite à PostgreSQL](https://www.deblan.io/post/655/matrix-synapse-migrer-de-sqlite-a-postgresql) @@ -59,4 +60,3 @@ This application is rather suitable for instances that activate a lot of applica * [Murph v1.20 is out! 📣](https://www.deblan.io/post/651/murph-v1-20-is-out) * [Je n'ai rien à cacher.](https://www.deblan.io/post/650/je-nai-rien-a-cacher) * [Capture, un reverse proxy pour analyser les requêtes de vos applications](https://www.deblan.io/post/648/capture-un-proxy-pour-analyser-les-requetes-de-vos-applications) -* [Affaire du 8 décembre : le chiffrement des communications assimilé à un comportement terroriste](https://www.deblan.io/post/649/affaire-du-8-decembre-le-chiffrement-des-communications-assimile-a-un-comportement-terroriste) From 2daf304c872748cea63822ee4b8777b996ad02a0 Mon Sep 17 00:00:00 2001 From: CI Date: Mon, 22 Jul 2024 23:43:25 +0000 Subject: [PATCH 36/45] Build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 05975d8..ea45f00 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ This application is rather suitable for instances that activate a lot of applica ## Latest blog posts +* [Vérifier l'expiration d'un domaine ou d'un certificat](https://www.deblan.io/post/666/verifier-lexpiration-dun-domaine-ou-dun-certificat) * [Pour une France non fasciste !](https://www.deblan.io/post/665/pour-une-france-non-fasciste) * [Anonymiser une base de données MySQL et PostgreSQL](https://www.deblan.io/post/660/anonymiser-une-base-de-donnees-mysql-et-postgresql) * [Murph v1.23 et Custom Menu v3.11](https://www.deblan.io/post/658/murph-v1-23-custom-menu-v3-11) @@ -59,4 +60,3 @@ This application is rather suitable for instances that activate a lot of applica * [Internet devient-il un Minitel 2.0 ou un bien commun ? - Benjamin Bayart - RTS – Libre à lire !](https://www.deblan.io/post/652/internet-devient-il-un-minitel-2-0-ou-un-bien-commun-benjamin-bayart-rts-libre-a-lire) * [Murph v1.20 is out! 📣](https://www.deblan.io/post/651/murph-v1-20-is-out) * [Je n'ai rien à cacher.](https://www.deblan.io/post/650/je-nai-rien-a-cacher) -* [Capture, un reverse proxy pour analyser les requêtes de vos applications](https://www.deblan.io/post/648/capture-un-proxy-pour-analyser-les-requetes-de-vos-applications) From 16bb8afe7ce65636b48d7c3dff666a5e403fb5ee Mon Sep 17 00:00:00 2001 From: CI Date: Fri, 2 Aug 2024 21:19:57 +0000 Subject: [PATCH 37/45] Build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ea45f00..a3e84da 100644 --- a/README.md +++ b/README.md @@ -50,8 +50,8 @@ This application is rather suitable for instances that activate a lot of applica ## Latest blog posts +* [Gestionnaire de fonds d'écrans pour i3](https://www.deblan.io/post/667/gestionnaire-de-fonds-decran-pour-i3) * [Vérifier l'expiration d'un domaine ou d'un certificat](https://www.deblan.io/post/666/verifier-lexpiration-dun-domaine-ou-dun-certificat) -* [Pour une France non fasciste !](https://www.deblan.io/post/665/pour-une-france-non-fasciste) * [Anonymiser une base de données MySQL et PostgreSQL](https://www.deblan.io/post/660/anonymiser-une-base-de-donnees-mysql-et-postgresql) * [Murph v1.23 et Custom Menu v3.11](https://www.deblan.io/post/658/murph-v1-23-custom-menu-v3-11) * [Matrix-Synapse : migrer de SQLite à PostgreSQL](https://www.deblan.io/post/655/matrix-synapse-migrer-de-sqlite-a-postgresql) From e447ff241e5cd09e385a8dd6126f1b03073d2835 Mon Sep 17 00:00:00 2001 From: CI Date: Mon, 2 Sep 2024 23:51:46 +0000 Subject: [PATCH 38/45] Build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a3e84da..f90dc84 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ This application is rather suitable for instances that activate a lot of applica ## Latest blog posts +* [Synchronisation de clients FreeTube](https://www.deblan.io/post/668/synchronisation-de-clients-freetube) * [Gestionnaire de fonds d'écrans pour i3](https://www.deblan.io/post/667/gestionnaire-de-fonds-decran-pour-i3) * [Vérifier l'expiration d'un domaine ou d'un certificat](https://www.deblan.io/post/666/verifier-lexpiration-dun-domaine-ou-dun-certificat) * [Anonymiser une base de données MySQL et PostgreSQL](https://www.deblan.io/post/660/anonymiser-une-base-de-donnees-mysql-et-postgresql) @@ -59,4 +60,3 @@ This application is rather suitable for instances that activate a lot of applica * [Signez la pétition pour empêcher la France d’obliger les navigateurs tels que Firefox de Mozilla à censurer des sites web](https://www.deblan.io/post/653/signez-la-petition-pour-empecher-la-france-d-obliger-les-navigateurs-tels-que-firefox-de-mozilla-a-censurer-des-sites-web) * [Internet devient-il un Minitel 2.0 ou un bien commun ? - Benjamin Bayart - RTS – Libre à lire !](https://www.deblan.io/post/652/internet-devient-il-un-minitel-2-0-ou-un-bien-commun-benjamin-bayart-rts-libre-a-lire) * [Murph v1.20 is out! 📣](https://www.deblan.io/post/651/murph-v1-20-is-out) -* [Je n'ai rien à cacher.](https://www.deblan.io/post/650/je-nai-rien-a-cacher) From 5005f50d56d5c98fe27e5452f0ef73bd0ffa32de Mon Sep 17 00:00:00 2001 From: CI Date: Thu, 10 Oct 2024 19:42:16 +0000 Subject: [PATCH 39/45] Build --- README.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/README.md b/README.md index f90dc84..f5f36c9 100644 --- a/README.md +++ b/README.md @@ -50,13 +50,3 @@ This application is rather suitable for instances that activate a lot of applica ## Latest blog posts -* [Synchronisation de clients FreeTube](https://www.deblan.io/post/668/synchronisation-de-clients-freetube) -* [Gestionnaire de fonds d'écrans pour i3](https://www.deblan.io/post/667/gestionnaire-de-fonds-decran-pour-i3) -* [Vérifier l'expiration d'un domaine ou d'un certificat](https://www.deblan.io/post/666/verifier-lexpiration-dun-domaine-ou-dun-certificat) -* [Anonymiser une base de données MySQL et PostgreSQL](https://www.deblan.io/post/660/anonymiser-une-base-de-donnees-mysql-et-postgresql) -* [Murph v1.23 et Custom Menu v3.11](https://www.deblan.io/post/658/murph-v1-23-custom-menu-v3-11) -* [Matrix-Synapse : migrer de SQLite à PostgreSQL](https://www.deblan.io/post/655/matrix-synapse-migrer-de-sqlite-a-postgresql) -* [Remote i3-wm WS : ma télécommande pour bureau GNU/Linux (v2)](https://www.deblan.io/post/654/remote-i3-wm-ws-ma-telecommande-pour-bureau-gnu-linux-v2) -* [Signez la pétition pour empêcher la France d’obliger les navigateurs tels que Firefox de Mozilla à censurer des sites web](https://www.deblan.io/post/653/signez-la-petition-pour-empecher-la-france-d-obliger-les-navigateurs-tels-que-firefox-de-mozilla-a-censurer-des-sites-web) -* [Internet devient-il un Minitel 2.0 ou un bien commun ? - Benjamin Bayart - RTS – Libre à lire !](https://www.deblan.io/post/652/internet-devient-il-un-minitel-2-0-ou-un-bien-commun-benjamin-bayart-rts-libre-a-lire) -* [Murph v1.20 is out! 📣](https://www.deblan.io/post/651/murph-v1-20-is-out) From ae0050aa11c736fc7b36be4648e602bd8324183a Mon Sep 17 00:00:00 2001 From: CI Date: Sun, 27 Oct 2024 19:43:40 +0000 Subject: [PATCH 40/45] Build --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index f5f36c9..3a9739d 100644 --- a/README.md +++ b/README.md @@ -50,3 +50,13 @@ This application is rather suitable for instances that activate a lot of applica ## Latest blog posts +* [Quelques suggestions pour vous aider à décrocher un entretien](https://www.deblan.fr/post/669/quelques-suggestions-pour-vous-aider-a-decrocher-un-entretien) +* [Synchronisation de clients FreeTube](https://www.deblan.fr/post/668/synchronisation-de-clients-freetube) +* [Gestionnaire de fonds d'écrans pour i3](https://www.deblan.fr/post/667/gestionnaire-de-fonds-decran-pour-i3) +* [Vérifier l'expiration d'un domaine ou d'un certificat](https://www.deblan.fr/post/666/verifier-lexpiration-dun-domaine-ou-dun-certificat) +* [Anonymiser une base de données MySQL et PostgreSQL](https://www.deblan.fr/post/660/anonymiser-une-base-de-donnees-mysql-et-postgresql) +* [Murph v1.23 et Custom Menu v3.11](https://www.deblan.fr/post/658/murph-v1-23-custom-menu-v3-11) +* [Matrix-Synapse : migrer de SQLite à PostgreSQL](https://www.deblan.fr/post/655/matrix-synapse-migrer-de-sqlite-a-postgresql) +* [Remote i3-wm WS : ma télécommande pour bureau GNU/Linux (v2)](https://www.deblan.fr/post/654/remote-i3-wm-ws-ma-telecommande-pour-bureau-gnu-linux-v2) +* [Signez la pétition pour empêcher la France d’obliger les navigateurs tels que Firefox de Mozilla à censurer des sites web](https://www.deblan.fr/post/653/signez-la-petition-pour-empecher-la-france-d-obliger-les-navigateurs-tels-que-firefox-de-mozilla-a-censurer-des-sites-web) +* [Internet devient-il un Minitel 2.0 ou un bien commun ? - Benjamin Bayart - RTS – Libre à lire !](https://www.deblan.fr/post/652/internet-devient-il-un-minitel-2-0-ou-un-bien-commun-benjamin-bayart-rts-libre-a-lire) From 901c18c231ab2dd2de0326ba0abdaaacdc20b8cd Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Fri, 24 Jan 2025 15:46:27 +0100 Subject: [PATCH 41/45] fix ci (v3) --- .woodpecker.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 0915f2f..6d81f78 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,7 +1,9 @@ steps: update_profile: image: alpine/git - secrets: [ssh_priv_key] + environment: + SSH_PRIV_KEY: + from_secret: ssh_priv_key commands: - git config --global user.email ci@gitnet.fr - git config --global user.name CI From 50707577365a56968ddcfe8069da8cfb794d8d5e Mon Sep 17 00:00:00 2001 From: CI Date: Thu, 30 Jan 2025 08:30:34 +0000 Subject: [PATCH 42/45] Build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a9739d..5696186 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ This application is rather suitable for instances that activate a lot of applica ## Latest blog posts +* [Quand la loi « Narcotrafic » devient la loi « Roue libre »](https://www.deblan.fr/post/670/quand-la-loi-narcotrafic-devient-la-loi-roue-libre) * [Quelques suggestions pour vous aider à décrocher un entretien](https://www.deblan.fr/post/669/quelques-suggestions-pour-vous-aider-a-decrocher-un-entretien) * [Synchronisation de clients FreeTube](https://www.deblan.fr/post/668/synchronisation-de-clients-freetube) * [Gestionnaire de fonds d'écrans pour i3](https://www.deblan.fr/post/667/gestionnaire-de-fonds-decran-pour-i3) @@ -59,4 +60,3 @@ This application is rather suitable for instances that activate a lot of applica * [Matrix-Synapse : migrer de SQLite à PostgreSQL](https://www.deblan.fr/post/655/matrix-synapse-migrer-de-sqlite-a-postgresql) * [Remote i3-wm WS : ma télécommande pour bureau GNU/Linux (v2)](https://www.deblan.fr/post/654/remote-i3-wm-ws-ma-telecommande-pour-bureau-gnu-linux-v2) * [Signez la pétition pour empêcher la France d’obliger les navigateurs tels que Firefox de Mozilla à censurer des sites web](https://www.deblan.fr/post/653/signez-la-petition-pour-empecher-la-france-d-obliger-les-navigateurs-tels-que-firefox-de-mozilla-a-censurer-des-sites-web) -* [Internet devient-il un Minitel 2.0 ou un bien commun ? - Benjamin Bayart - RTS – Libre à lire !](https://www.deblan.fr/post/652/internet-devient-il-un-minitel-2-0-ou-un-bien-commun-benjamin-bayart-rts-libre-a-lire) From 2e74afa08ea7c46cd0a57edca20af4fa2af7c0aa Mon Sep 17 00:00:00 2001 From: CI Date: Wed, 16 Apr 2025 19:55:29 +0000 Subject: [PATCH 43/45] Build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5696186..951cfb2 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ This application is rather suitable for instances that activate a lot of applica ## Latest blog posts +* [Changements importants avec Custom Menu 5](https://www.deblan.fr/post/671/changements-importants-avec-custom-menu-5) * [Quand la loi « Narcotrafic » devient la loi « Roue libre »](https://www.deblan.fr/post/670/quand-la-loi-narcotrafic-devient-la-loi-roue-libre) * [Quelques suggestions pour vous aider à décrocher un entretien](https://www.deblan.fr/post/669/quelques-suggestions-pour-vous-aider-a-decrocher-un-entretien) * [Synchronisation de clients FreeTube](https://www.deblan.fr/post/668/synchronisation-de-clients-freetube) @@ -59,4 +60,3 @@ This application is rather suitable for instances that activate a lot of applica * [Murph v1.23 et Custom Menu v3.11](https://www.deblan.fr/post/658/murph-v1-23-custom-menu-v3-11) * [Matrix-Synapse : migrer de SQLite à PostgreSQL](https://www.deblan.fr/post/655/matrix-synapse-migrer-de-sqlite-a-postgresql) * [Remote i3-wm WS : ma télécommande pour bureau GNU/Linux (v2)](https://www.deblan.fr/post/654/remote-i3-wm-ws-ma-telecommande-pour-bureau-gnu-linux-v2) -* [Signez la pétition pour empêcher la France d’obliger les navigateurs tels que Firefox de Mozilla à censurer des sites web](https://www.deblan.fr/post/653/signez-la-petition-pour-empecher-la-france-d-obliger-les-navigateurs-tels-que-firefox-de-mozilla-a-censurer-des-sites-web) From 7f26c7dd70a4293e3f628ddd1f30338fd58e1221 Mon Sep 17 00:00:00 2001 From: CI Date: Sat, 30 Aug 2025 21:18:40 +0000 Subject: [PATCH 44/45] Build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 951cfb2..5230cc6 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ This application is rather suitable for instances that activate a lot of applica ## Latest blog posts +* [Streaming Owncast et Twitch](https://www.deblan.fr/post/672/streaming-owncast-et-twitch) * [Changements importants avec Custom Menu 5](https://www.deblan.fr/post/671/changements-importants-avec-custom-menu-5) * [Quand la loi « Narcotrafic » devient la loi « Roue libre »](https://www.deblan.fr/post/670/quand-la-loi-narcotrafic-devient-la-loi-roue-libre) * [Quelques suggestions pour vous aider à décrocher un entretien](https://www.deblan.fr/post/669/quelques-suggestions-pour-vous-aider-a-decrocher-un-entretien) @@ -59,4 +60,3 @@ This application is rather suitable for instances that activate a lot of applica * [Anonymiser une base de données MySQL et PostgreSQL](https://www.deblan.fr/post/660/anonymiser-une-base-de-donnees-mysql-et-postgresql) * [Murph v1.23 et Custom Menu v3.11](https://www.deblan.fr/post/658/murph-v1-23-custom-menu-v3-11) * [Matrix-Synapse : migrer de SQLite à PostgreSQL](https://www.deblan.fr/post/655/matrix-synapse-migrer-de-sqlite-a-postgresql) -* [Remote i3-wm WS : ma télécommande pour bureau GNU/Linux (v2)](https://www.deblan.fr/post/654/remote-i3-wm-ws-ma-telecommande-pour-bureau-gnu-linux-v2) From d23a45ad284900ac3a7b008176d1319b9b87afcc Mon Sep 17 00:00:00 2001 From: CI Date: Fri, 13 Mar 2026 21:23:38 +0000 Subject: [PATCH 45/45] Build --- README.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/README.md b/README.md index 5230cc6..f5f36c9 100644 --- a/README.md +++ b/README.md @@ -50,13 +50,3 @@ This application is rather suitable for instances that activate a lot of applica ## Latest blog posts -* [Streaming Owncast et Twitch](https://www.deblan.fr/post/672/streaming-owncast-et-twitch) -* [Changements importants avec Custom Menu 5](https://www.deblan.fr/post/671/changements-importants-avec-custom-menu-5) -* [Quand la loi « Narcotrafic » devient la loi « Roue libre »](https://www.deblan.fr/post/670/quand-la-loi-narcotrafic-devient-la-loi-roue-libre) -* [Quelques suggestions pour vous aider à décrocher un entretien](https://www.deblan.fr/post/669/quelques-suggestions-pour-vous-aider-a-decrocher-un-entretien) -* [Synchronisation de clients FreeTube](https://www.deblan.fr/post/668/synchronisation-de-clients-freetube) -* [Gestionnaire de fonds d'écrans pour i3](https://www.deblan.fr/post/667/gestionnaire-de-fonds-decran-pour-i3) -* [Vérifier l'expiration d'un domaine ou d'un certificat](https://www.deblan.fr/post/666/verifier-lexpiration-dun-domaine-ou-dun-certificat) -* [Anonymiser une base de données MySQL et PostgreSQL](https://www.deblan.fr/post/660/anonymiser-une-base-de-donnees-mysql-et-postgresql) -* [Murph v1.23 et Custom Menu v3.11](https://www.deblan.fr/post/658/murph-v1-23-custom-menu-v3-11) -* [Matrix-Synapse : migrer de SQLite à PostgreSQL](https://www.deblan.fr/post/655/matrix-synapse-migrer-de-sqlite-a-postgresql)