Compare commits
1 commit
developmen
...
testnotifi
| Author | SHA1 | Date | |
|---|---|---|---|
| 9f7726e390 |
2 changed files with 14 additions and 3 deletions
13
.github/workflows/.github-ci.yaml
vendored
13
.github/workflows/.github-ci.yaml
vendored
|
|
@ -6,7 +6,7 @@ on:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-host
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
steps:
|
||||
-
|
||||
|
|
@ -33,10 +33,21 @@ 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: Build and push
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
push: true
|
||||
allow: network.host
|
||||
network: host
|
||||
platforms: linux/amd64,linux/arm64
|
||||
tags: ${{ steps.docker.outputs.tags }}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue