mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2025-04-05 02:20:54 +01:00
Compare commits
7 commits
Author | SHA1 | Date | |
---|---|---|---|
d49be92bd9 | |||
0fddabfbd6 | |||
82706ee81d | |||
e680ed5f04 | |||
2ffb028f1c | |||
a9e6891cf9 | |||
ca252141e0 |
4 changed files with 29 additions and 6 deletions
18
.github/workflows/env.yml
vendored
18
.github/workflows/env.yml
vendored
|
@ -18,13 +18,16 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
manifest: [rokit.toml, aftman.toml, foreman.toml]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
name: ${{ matrix.manifest }} (${{ matrix.os }})
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Create manifest file
|
- name: Create manifest file (aftman/rokit)
|
||||||
|
if: matrix.manifest != 'foreman.toml'
|
||||||
run: |
|
run: |
|
||||||
cat > ${{ inputs.path }}/rokit.toml << EOF
|
cat > ${{ inputs.path }}/${{ matrix.manifest }} << EOF
|
||||||
[tools]
|
[tools]
|
||||||
selene = "Kampfkarren/selene@0.25.0"
|
selene = "Kampfkarren/selene@0.25.0"
|
||||||
stylua = "JohnnyMorganz/stylua@0.18.2"
|
stylua = "JohnnyMorganz/stylua@0.18.2"
|
||||||
|
@ -32,6 +35,17 @@ jobs:
|
||||||
EOF
|
EOF
|
||||||
shell: bash
|
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
|
- name: Run setup-rokit
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
|
|
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [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
|
## [0.1.1] - 2024-08-10
|
||||||
### Changed
|
### Changed
|
||||||
- Now uses the official installer script internally for installing Rokit
|
- 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
|
### Added
|
||||||
- Initial release, with support for rokit instead of aftman
|
- 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.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.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
|
||||||
|
|
|
@ -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:
|
Use the latest released version of `rokit` with default parameters:
|
||||||
```yaml
|
```yaml
|
||||||
steps:
|
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).
|
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.
|
For more advanced cases, use the parameters below.
|
||||||
```yaml
|
```yaml
|
||||||
steps:
|
steps:
|
||||||
- uses: CompeyDev/setup-rokit@v0.1.1
|
- uses: CompeyDev/setup-rokit@v0.1.2
|
||||||
with:
|
with:
|
||||||
version: v1.0.0 # name of git tag in rokit (uses latest tag by default)
|
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)
|
path: some_dir/my_project # path to project dir containing a `rokit.toml`, `aftman.toml`, or `foreman.toml` ("." (current dir) by default)
|
||||||
|
|
|
@ -46,7 +46,7 @@ runs:
|
||||||
- name: Discover manifest file
|
- name: Discover manifest file
|
||||||
id: manifest
|
id: manifest
|
||||||
run: |
|
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 "::debug::Discovered manifest path: $manifest_path"
|
||||||
echo "path=$manifest_path" >> $GITHUB_OUTPUT
|
echo "path=$manifest_path" >> $GITHUB_OUTPUT
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
Loading…
Add table
Reference in a new issue