Skip to content

Commit

Permalink
[fork] update URLs in README
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamhm committed Oct 28, 2024
1 parent 9a6d2fe commit c1e8c4a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Github Action for Lua and LuaJIT

### `leafo/gh-actions-lua`
### `luarocks/gh-actions-lua`

[![Actions Status](https://github.com/leafo/gh-actions-lua/workflows/test/badge.svg)](https://github.com/leafo/gh-actions-lua/actions)
[![Actions Status](https://github.com/luarocks/gh-actions-lua/workflows/test/badge.svg)](https://github.com/luarocks/gh-actions-lua/actions)

**Note**: You must use version 8 or greater as GitHub has
deprecated older versions of the actions core libraries.
Expand All @@ -13,7 +13,7 @@ directly in workflows.

Other Lua GitHub actions:

* [`leafo/gh-actions-luarocks`](https://github.com/leafo/gh-actions-luarocks)
* [`luarocks/gh-actions-luarocks`](https://github.com/luarocks/gh-actions-luarocks)
* inputs: `luarocksVersion`


Expand All @@ -22,21 +22,21 @@ Other Lua GitHub actions:
Install Lua: (Will typically default to the latest release, 5.4.4 as of this readme)

```yaml
- uses: leafo/gh-actions-lua@v10
- uses: luarocks/gh-actions-lua@v10
```
Install specific version of Lua:
```yaml
- uses: leafo/gh-actions-lua@v10
- uses: luarocks/gh-actions-lua@v10
with:
luaVersion: "5.1.5"
```
Install specific version of LuaJIT:
```yaml
- uses: leafo/gh-actions-lua@v10
- uses: luarocks/gh-actions-lua@v10
with:
luaVersion: "luajit-2.1.0-beta3"
```
Expand All @@ -47,7 +47,7 @@ include this line on non-Windows platforms, as the action will do nothing in tho

```yaml
- uses: ilammy/msvc-dev-cmd@v1
- uses: leafo/gh-actions-lua@v10
- uses: luarocks/gh-actions-lua@v10
```

## Inputs
Expand Down Expand Up @@ -90,7 +90,7 @@ Additional flags to pass to `make` when building Lua.
Example value:

```yaml
- uses: leafo/gh-actions-lua@master
- uses: luarocks/gh-actions-lua@master
with:
luaVersion: 5.3
luaCompileFlags: LUA_CFLAGS="-DLUA_INT_TYPE=LUA_INT_INT"
Expand All @@ -117,11 +117,11 @@ jobs:
steps:
- uses: actions/checkout@master
- uses: leafo/gh-actions-lua@v10
- uses: luarocks/gh-actions-lua@v10
with:
luaVersion: "5.1.5"
- uses: leafo/gh-actions-luarocks@v4
- uses: luarocks/gh-actions-luarocks@v4
- name: build
run: |
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
steps:
- uses: actions/checkout@master
- uses: leafo/gh-actions-lua@v10
- uses: luarocks/gh-actions-lua@v10
with:
luaVersion: ${{ matrix.luaVersion }}
Expand Down

0 comments on commit c1e8c4a

Please sign in to comment.