Update Article “2023-04-17-automatiser-la-publication-des-artefacts”
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Quentin 2023-04-17 13:49:00 +00:00
parent 189a0de29c
commit 34326ee9ae
1 changed files with 5 additions and 5 deletions

View File

@ -35,17 +35,17 @@ nix build .#packages.i686-linux.docker.albatros -o publish/docker/linux/386/imag
Et maintenant imaginons les commandes de base : Et maintenant imaginons les commandes de base :
```bash ```bash
alba static push -t albatros:0.9 publish/ s3://download.deuxfleurs.org/ alba static push -t albatros:0.9 publish/ 's3://download.deuxfleurs.org?endpoint=garage.deuxfleurs.fr&region=garage'
alba registry push -t albatros:0.9 publish/ s3://registry.deuxfleurs.org/ alba registry push -t albatros:0.9 publish/ 's3://registry.deuxfleurs.org?endpoint=garage.deuxfleurs.fr&region=garage'
alba docker push publish/ docker.io/dxflrs/albatros:0.9 alba docker push publish/ docker.io/dxflrs/albatros:0.9
``` ```
On pourra imaginer d'avantage de commandes par la suite comme : On pourra imaginer d'avantage de commandes par la suite comme :
```bash ```bash
alba static ls -t albatros s3://download.deuxfleurs.org alba static ls -t albatros 's3://download.deuxfleurs.org?endpoint=garage.deuxfleurs.fr&region=garage'
alba static rm -t albatros:0.8 s3://download.deuxfleurs.org alba static rm -t albatros:0.8 's3://download.deuxfleurs.org?endpoint=garage.deuxfleurs.fr&region=garage'
alba static gc -t albatros --keep 10 s3://download.deuxfleurs.org alba static gc -t albatros --keep 10 's3://download.deuxfleurs.org?endpoint=garage.deuxfleurs.fr&region=garage'
``` ```
Mais c'est en dehors du périmètre pour le moment ! Mais c'est en dehors du périmètre pour le moment !