Skip to content

Commit

Permalink
Removed comments in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Demmonius committed Feb 4, 2021
1 parent c1decf2 commit 0b4d985
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ For example, if you are asking for a variable `VAR`, you cann access to by using

```yaml
- name: Export one variable
uses: UnlyEd/github-action-store-variable@v2.0.0 # See https://github.com/UnlyEd/github-action-store-variable
uses: UnlyEd/github-action-store-variable@v2.0.0
with:
variables: FOO=BAR
```
Expand All @@ -97,7 +97,7 @@ For example, if you are asking for a variable `VAR`, you cann access to by using

```yaml
- name: Export many variables
uses: UnlyEd/github-action-store-variable@v2.0.0 # See https://github.com/UnlyEd/github-action-store-variable
uses: UnlyEd/github-action-store-variable@v2.0.0
with:
variables: |
FOO=BAR
Expand All @@ -107,7 +107,7 @@ For example, if you are asking for a variable `VAR`, you cann access to by using
### 3. Save many variables using a custom delimiter
```yaml
- name: Export many variables
uses: UnlyEd/github-action-store-variable@v2.0.0 # See https://github.com/UnlyEd/github-action-store-variable
uses: UnlyEd/github-action-store-variable@v2.0.0
with:
delimiter: ':'
variables: FOO=BAR:STAGE=production
Expand All @@ -116,15 +116,15 @@ For example, if you are asking for a variable `VAR`, you cann access to by using
### 4. Retrieve one variable
```yaml
- name: Import variable MAGIC_NUMBER
uses: UnlyEd/github-action-store-variable@v2.0.0 # See https://github.com/UnlyEd/github-action-store-variable
uses: UnlyEd/github-action-store-variable@v2.0.0
with:
variables: FOO
```

### 5. Retrieve many variables
```yaml
- name: Import variable MAGIC_NUMBER
uses: UnlyEd/github-action-store-variable@v2.0.0 # See https://github.com/UnlyEd/github-action-store-variable
uses: UnlyEd/github-action-store-variable@v2.0.0
with:
variables: |
FOO
Expand All @@ -134,7 +134,7 @@ For example, if you are asking for a variable `VAR`, you cann access to by using
### 6. Retrieve many variables using a custom delimiter
```yaml
- name: Import variable MAGIC_NUMBER
uses: UnlyEd/github-action-store-variable@v2.0.0 # See https://github.com/UnlyEd/github-action-store-variable
uses: UnlyEd/github-action-store-variable@v2.0.0
with:
delimiter: ';'
variables: FOO;STAGE
Expand All @@ -143,7 +143,7 @@ For example, if you are asking for a variable `VAR`, you cann access to by using
### 7. Crash CI if variable doesn't exist
```yaml
- name: Import variable MAGIC_NUMBER
uses: UnlyEd/github-action-store-variable@v2.0.0 # See https://github.com/UnlyEd/github-action-store-variable
uses: UnlyEd/github-action-store-variable@v2.0.0
with:
failIfNotFound: true
variables: WRONG_VARIABLE
Expand Down

0 comments on commit 0b4d985

Please sign in to comment.