From 9f7726e390b908751d42831d3fe71dfa5751b3a8 Mon Sep 17 00:00:00 2001 From: richardrobertreitz Date: Thu, 31 Jul 2025 09:39:46 +0000 Subject: [PATCH 1/5] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 93270eb..37e1870 100644 --- a/README.md +++ b/README.md @@ -10,13 +10,13 @@ In mathematics, the Fibonacci numbers are the numbers in the following integer sequence, called the Fibonacci sequence, and characterized by the fact that every number after the first two is the sum of the two preceding ones: ``` -1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ... +1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ... ``` Often, especially in modern usage, the sequence is extended by one more initial term: ``` -0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ... +0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ... ``` ## Implementation Details From 34e5ea5847efc06acd838e470d82811d62e43279 Mon Sep 17 00:00:00 2001 From: giteaAdmin Date: Tue, 28 Oct 2025 14:07:09 +0000 Subject: [PATCH 2/5] Update .github/workflows/.github-ci.yaml --- .github/workflows/.github-ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/.github-ci.yaml b/.github/workflows/.github-ci.yaml index c4aef4a..4050a21 100644 --- a/.github/workflows/.github-ci.yaml +++ b/.github/workflows/.github-ci.yaml @@ -6,7 +6,7 @@ on: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-host steps: - From f3be1963d392b02a7fc40e7ba730bbe0abe5a63d Mon Sep 17 00:00:00 2001 From: giteaAdmin Date: Tue, 28 Oct 2025 14:11:29 +0000 Subject: [PATCH 3/5] Update .github/workflows/.github-ci.yaml --- .github/workflows/.github-ci.yaml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/.github/workflows/.github-ci.yaml b/.github/workflows/.github-ci.yaml index 4050a21..baf8b8d 100644 --- a/.github/workflows/.github-ci.yaml +++ b/.github/workflows/.github-ci.yaml @@ -33,21 +33,18 @@ jobs: registry: ${{ steps.repository.outputs.registry }} username: "${{ secrets.PACKAGES_USER }}" password: "${{ secrets.PACKAGES_TOKEN }}" - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - with: - buildkitd-flags: '--allow-insecure-entitlement network.host' - driver-opts: network=host + #- + # name: Set up Docker Buildx + # uses: docker/setup-buildx-action@v3 + # with: + # buildkitd-flags: '--allow-insecure-entitlement network.host' + # driver-opts: network=host - name: Build and push uses: docker/build-push-action@v6 with: push: true - allow: network.host - network: host - platforms: linux/amd64,linux/arm64 + #allow: network.host + #network: host + #platforms: linux/amd64 tags: ${{ steps.docker.outputs.tags }} From 763cac05e91bc52a02b1ff286913710bc003aa07 Mon Sep 17 00:00:00 2001 From: giteaAdmin Date: Wed, 29 Oct 2025 09:17:05 +0000 Subject: [PATCH 4/5] Update .github/workflows/.github-ci.yaml --- .github/workflows/.github-ci.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/.github-ci.yaml b/.github/workflows/.github-ci.yaml index baf8b8d..92acbf2 100644 --- a/.github/workflows/.github-ci.yaml +++ b/.github/workflows/.github-ci.yaml @@ -33,18 +33,9 @@ jobs: registry: ${{ steps.repository.outputs.registry }} username: "${{ secrets.PACKAGES_USER }}" password: "${{ secrets.PACKAGES_TOKEN }}" - #- - # name: Set up Docker Buildx - # uses: docker/setup-buildx-action@v3 - # with: - # buildkitd-flags: '--allow-insecure-entitlement network.host' - # driver-opts: network=host - name: Build and push uses: docker/build-push-action@v6 with: push: true - #allow: network.host - #network: host - #platforms: linux/amd64 tags: ${{ steps.docker.outputs.tags }} From 14a5cbf66a6ebcef90dfb674bbe4d41c274090e9 Mon Sep 17 00:00:00 2001 From: richardrobertreitz Date: Wed, 29 Oct 2025 16:22:47 +0000 Subject: [PATCH 5/5] Update .github/workflows/.github-ci.yaml --- .github/workflows/.github-ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/.github-ci.yaml b/.github/workflows/.github-ci.yaml index 92acbf2..7fce44c 100644 --- a/.github/workflows/.github-ci.yaml +++ b/.github/workflows/.github-ci.yaml @@ -38,4 +38,5 @@ jobs: uses: docker/build-push-action@v6 with: push: true + platforms: linux/amd64,linux/arm64 tags: ${{ steps.docker.outputs.tags }}