From 104ba7ca7234fab6566e5773832767fcad3f6212 Mon Sep 17 00:00:00 2001 From: ChristopherHX Date: Tue, 24 Dec 2024 17:52:09 +0100 Subject: [PATCH] vars section fix type and wrap expression syntax in backticks (#35) Co-authored-by: Casey Lee --- src/usage/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/usage/index.md b/src/usage/index.md index 56f7913..39230e3 100644 --- a/src/usage/index.md +++ b/src/usage/index.md @@ -108,7 +108,7 @@ Example: # Vars -To run `act` with repository variables that are accessible inside the workflow via ${{ vars.VARIABLE }}, you can enter them interactively or load them from a file. The following options are available for providing github repository variables: +To run `act` with repository variables that are accessible inside the workflow via `${{ vars.VARIABLE }}`, you can enter them interactively or load them from a file. The following options are available for providing github repository variables: - `act --var VARIABLE=somevalue` - use `somevalue` as the value for `VARIABLE`. - `act --var-file my.variables` - load variables values from `my.variables` file.