6060 spec :
6161 containers :
6262 - name : example
63- image : ghcr.io/fluidattacks/makes:22.09
63+ image : ghcr.io/fluidattacks/makes:22.10
6464 command : [m]
6565 args :
6666 - github:fluidattacks/makes@main
@@ -146,7 +146,7 @@ Easy, isn't it?
146146Now 🔥 it up with: ` $ m . /deployTerraform/myAwesomeMicroService `
147147
148148``` text
149- Makes v22.09 -linux
149+ Makes v22.10 -linux
150150
151151[INFO] Making environment variables for Terraform for myAwesomeMicroService:
152152[INFO] - TF_VAR_githubToken from GITHUB_API_TOKEN
@@ -496,10 +496,10 @@ In order to use Makes you'll need to:
496496
4974971 . Install Makes by running:
498498
499- ` $ nix-env -if https://github.com/fluidattacks/makes/archive/22.09 .tar.gz `
499+ ` $ nix-env -if https://github.com/fluidattacks/makes/archive/22.10 .tar.gz `
500500
501501 We will install two commands in your system:
502- ` $ m ` , and ` $ m-v22.09 ` .
502+ ` $ m ` , and ` $ m-v22.10 ` .
503503
504504Makes targets two kind of users:
505505
@@ -603,7 +603,8 @@ for instance:
603603{
604604 makesSrc = builtins.fetchGit {
605605 url = "https://github.com/fluidattacks/makes";
606- ref = "22.09";
606+ ref = "refs/tags/22.10";
607+ rev = "" # Add a commit here
607608 };
608609}
609610```
@@ -613,7 +614,7 @@ for instance:
613614For the whole ecosystem to work
614615you need to use the ** same version**
615616of the framework and the CLI.
616- For example: ` 22.09 ` .
617+ For example: ` 22.10 ` .
617618
618619# Configuring CI/CD
619620
@@ -662,7 +663,7 @@ jobs:
662663 runs-on : ubuntu-latest
663664 steps :
664665 - uses : actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
665- - uses : docker://ghcr.io/fluidattacks/makes:22.09
666+ - uses : docker://ghcr.io/fluidattacks/makes:22.10
666667 # You can use any name you like here
667668 name : helloWorld
668669 # You can pass secrets (if required) as environment variables like this:
@@ -686,7 +687,7 @@ looks like this:
686687``` yaml
687688# /path/to/my/project/.gitlab-ci.yaml
688689/helloWorld :
689- image : ghcr.io/fluidattacks/makes:22.09
690+ image : ghcr.io/fluidattacks/makes:22.10
690691 script :
691692 - m . /helloWorld 1 2 3
692693# Add more jobs here, you can copy paste /helloWorld and modify the `script`
@@ -710,7 +711,7 @@ looks like this:
710711os : linux
711712language : nix
712713nix : 2.3.12
713- install : nix-env -if https://github.com/fluidattacks/makes/archive/22.09 .tar.gz
714+ install : nix-env -if https://github.com/fluidattacks/makes/archive/22.10 .tar.gz
714715env :
715716 global :
716717 # Encrypted environment variable
@@ -1749,7 +1750,7 @@ Types:
17491750 #
17501751 # If you need to run jobs on different container images,
17511752 # simply create many `aws_batch_job_definition`s
1752- image = "ghcr.io/fluidattacks/makes:22.09 "
1753+ image = "ghcr.io/fluidattacks/makes:22.10 "
17531754
17541755 # Below arguments can be parametrized later,
17551756 # but they are required for the job definition to be created
@@ -2616,7 +2617,7 @@ for [makeNodeJsEnvironment](#makenodejsenvironment)
26162617like this:
26172618
26182619```bash
2619- m github:fluidattacks/makes@22.09 /utils/makeNodeJsLock \
2620+ m github:fluidattacks/makes@22.10 /utils/makeNodeJsLock \
26202621 "${node_js_version}" \
26212622 "${package_json}" \
26222623 "${package_lock}"
@@ -2636,7 +2637,7 @@ for [makePythonPypiEnvironment](#makepythonpypienvironment)
26362637like this:
26372638
26382639```bash
2639- m github:fluidattacks/makes@22.09 /utils/makePythonLock \
2640+ m github:fluidattacks/makes@22.10 /utils/makePythonLock \
26402641 "${python_version}" \
26412642 "${dependencies_yaml}" \
26422643 "${sources_yaml}"
@@ -2661,7 +2662,7 @@ psycopg2: "2.9.1"
26612662You can generate an encrypted [Sops][sops] file like this:
26622663
26632664```bash
2664- m github:fluidattacks/makes@22.09 /utils/makeSopsEncryptedFile \
2665+ m github:fluidattacks/makes@22.10 /utils/makeSopsEncryptedFile \
26652666 "${kms_key_arn}" \
26662667 "${output}"
26672668```
@@ -4253,7 +4254,7 @@ $ cat /path/to/my/project/makes/example/dependencies.yaml
42534254
42544255 Django: "3.2.6"
42554256
4256- $ m github:fluidattacks/makes@22.09 /utils/makePythonLock \
4257+ $ m github:fluidattacks/makes@22.10 /utils/makePythonLock \
42574258 3.8 \
42584259 /path/to/my/project/makes/example/dependencies.yaml \
42594260 /path/to/my/project/makes/example/sources.yaml
@@ -5197,7 +5198,8 @@ let
51975198 # Import the framework
51985199 makes = import " ${builtins.fetchGit {
51995200 url = " https://github.com/fluidattacks/makes" ;
5200- rev = " 22.09" ;
5201+ ref = " refs/tags/22.10" ;
5202+ rev = " " # Add a commit here
52015203 } }/src/args/agnostic.nix" { };
52025204in
52035205# Use the framework
0 commit comments