Skip to content

Commit 73e1eee

Browse files
Revise README for argument name and action version
Updated argument name from 'additional-args' to 'extra-args' and changed action version from v1 to v2 in usage instructions.
1 parent c98fde4 commit 73e1eee

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The `fikra-tech/uv-sync` GitHub Action allows you to easily install and manage d
1212

1313
- `python-version`: The version of Python to be used. Default is `3.x`.
1414
- `uv-version`: The version of the `uv` package manager to be installed. Default is the latest version.
15-
- `additional-args`: Additional arguments to be passed to the `uv sync` command. Default is an empty string.
15+
- `extra-args` : Additional arguments to be passed to the `uv sync` command. Default is an empty string.
1616

1717
## Usage
1818

@@ -31,13 +31,11 @@ jobs:
3131
- name: Checkout repository
3232
uses: actions/checkout@v2
3333
- name: Install uv-sync
34-
uses: fikra-tech/uv-sync@v1
34+
uses: fikra-tech/uv-sync@v2
3535
with:
3636
python-version: '3.11'
3737
uv-version: 'latest'
38-
additional-args: ''
39-
working-directory: '.'
40-
38+
4139
- name: Run a script
4240
run: uv run main.py
43-
```
41+
```

0 commit comments

Comments
 (0)