Compare commits

...

7 commits
v0.1.1 ... main

4 changed files with 29 additions and 6 deletions

View file

@ -18,13 +18,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
manifest: [rokit.toml, aftman.toml, foreman.toml]
runs-on: ${{ matrix.os }}
name: ${{ matrix.manifest }} (${{ matrix.os }})
steps:
- uses: actions/checkout@v4
- name: Create manifest file
- name: Create manifest file (aftman/rokit)
if: matrix.manifest != 'foreman.toml'
run: |
cat > ${{ inputs.path }}/rokit.toml << EOF
cat > ${{ inputs.path }}/${{ matrix.manifest }} << EOF
[tools]
selene = "Kampfkarren/selene@0.25.0"
stylua = "JohnnyMorganz/stylua@0.18.2"
@ -32,6 +35,17 @@ jobs:
EOF
shell: bash
- name: Create manifest file (foreman)
if: matrix.manifest == 'foreman.toml'
run: |
cat > ${{ inputs.path }}/${{ matrix.manifest }} << EOF
[tools]
selene = { github = "Kampfkarren/selene", version = "0.25.0" }
stylua = { github = "JohnnyMorganz/stylua", version = "0.18.2" }
rojo = { github = "rojo-rbx/rojo", version = "7.3.0" }
EOF
shell: bash
- name: Run setup-rokit
uses: ./
with:

View file

@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.2] - 2024-08-13
### Fixed
- Fixed manifest discovery error with multiple manifests. Manifests are now discovered based
on priority basis as follows:
1. `rokit.toml`
2. `aftman.toml`
3. `foreman.toml`
## [0.1.1] - 2024-08-10
### Changed
- Now uses the official installer script internally for installing Rokit
@ -15,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release, with support for rokit instead of aftman
[Unreleased]: https://github.com/CompeyDev/setup-rokit/compare/v0.1.1...HEAD
[Unreleased]: https://github.com/CompeyDev/setup-rokit/compare/v0.1.2...HEAD
[0.1.0]: https://github.com/CompeyDev/setup-rokit/releases/tag/v0.1.0
[0.1.1]: https://github.com/CompeyDev/setup-rokit/releases/tag/v0.1.1
[0.1.2]: https://github.com/CompeyDev/setup-rokit/releases/tag/v0.1.2

View file

@ -11,7 +11,7 @@ GitHub action to install and run [rokit](https://github.com/rojo-rbx/rokit); a t
Use the latest released version of `rokit` with default parameters:
```yaml
steps:
- uses: CompeyDev/setup-rokit@v0.1.1
- uses: CompeyDev/setup-rokit@v0.1.2
```
For a list of default parameter values, [check here](https://github.com/CompeyDev/setup-rokit/blob/main/action.yml#L5-L20).
@ -19,7 +19,7 @@ For a list of default parameter values, [check here](https://github.com/CompeyDe
For more advanced cases, use the parameters below.
```yaml
steps:
- uses: CompeyDev/setup-rokit@v0.1.1
- uses: CompeyDev/setup-rokit@v0.1.2
with:
version: v1.0.0 # name of git tag in rokit (uses latest tag by default)
path: some_dir/my_project # path to project dir containing a `rokit.toml`, `aftman.toml`, or `foreman.toml` ("." (current dir) by default)

View file

@ -46,7 +46,7 @@ runs:
- name: Discover manifest file
id: manifest
run: |
manifest_path=$(find ${{ inputs.path }} -maxdepth 1 -name "rokit.toml" -o -name "aftman.toml" -o -name "foreman.toml")
manifest_path=$(find ${{ inputs.path }} -maxdepth 1 -name "rokit.toml" -o -name "aftman.toml" -o -name "foreman.toml" | head -n 1)
echo "::debug::Discovered manifest path: $manifest_path"
echo "path=$manifest_path" >> $GITHUB_OUTPUT
shell: bash