Skip to content

Commit

Permalink
chore(docs): v5 -> v6
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Jun 18, 2024
1 parent 906f4b5 commit 097f530
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
uses: nvim-neorocks/luarocks-tag-release@v6
env:
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
```

> [!NOTE]
>
> Use the `v5` tag to keep up with the latest releases, without breaking changes.
> Use the `v6` tag to keep up with the latest releases, without breaking changes.
## Inputs

Expand All @@ -103,7 +103,7 @@ Example:

```yaml
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
uses: nvim-neorocks/luarocks-tag-release@v6
with:
dependencies: |
plenary.nvim
Expand All @@ -119,7 +119,7 @@ Example:

```yaml
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
uses: nvim-neorocks/luarocks-tag-release@v6
with:
test_dependencies: |
luaunit
Expand All @@ -134,7 +134,7 @@ Example:

```yaml
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
uses: nvim-neorocks/luarocks-tag-release@v6
with:
labels: |
neovim
Expand Down Expand Up @@ -163,7 +163,7 @@ Example:

```yaml
- name: LuaRocks Test and Upload
uses: nvim-neorocks/luarocks-tag-release@v5
uses: nvim-neorocks/luarocks-tag-release@v6
with:
test_interpreters: |
neovim-stable
Expand All @@ -189,7 +189,7 @@ Example:

```yaml
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
uses: nvim-neorocks/luarocks-tag-release@v6
with:
copy_directories: |
{{ neovim.plugin.dirs }}
Expand Down Expand Up @@ -243,7 +243,7 @@ Example:

```yaml
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
uses: nvim-neorocks/luarocks-tag-release@v6
with:
detailed_description: |
Publishes packages to LuaRocks when a git tag is pushed.
Expand All @@ -262,7 +262,7 @@ Example:

```yaml
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
uses: nvim-neorocks/luarocks-tag-release@v6
with:
template: "/path/to/my/template.rockspec"
```
Expand All @@ -277,7 +277,7 @@ Example:

```yaml
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
uses: nvim-neorocks/luarocks-tag-release@v6
with:
license: "MIT"
```
Expand Down Expand Up @@ -326,7 +326,7 @@ jobs:
- name: Get new commits
run: echo "NEW_COMMIT_COUNT=$(git log --oneline --since '24 hours ago' | wc -l)" >> $GITHUB_ENV
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
uses: nvim-neorocks/luarocks-tag-release@v6
if: ${{ env.NEW_COMMIT_COUNT > 0 }}
env:
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
Expand Down Expand Up @@ -355,7 +355,7 @@ Example:

```yaml
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
uses: nvim-neorocks/luarocks-tag-release@v6
with:
version: "scm"
# Add logic or determining if the specrev needs to be incremented
Expand All @@ -379,7 +379,7 @@ Example:
- run: |
sudo apt-get install -y libcurl4-openssl-dev
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
uses: nvim-neorocks/luarocks-tag-release@v6
with:
extra_luarocks_args: |
CURL_INCDIR=/usr/include/x86_64-linux-gnu
Expand Down

0 comments on commit 097f530

Please sign in to comment.