Compare commits

...

12 commits
v0.1.0 ... main

4 changed files with 40 additions and 36 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,9 +6,24 @@ 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
- Used `authenticate` command instead of manually writing file
## [0.1.0] - 2024-08-04
### Added
- Initial release, with support for rokit instead of aftman
[Unreleased]: https://github.com/CompeyDev/setup-rokit/compare/v0.1.0...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

@ -1,7 +1,7 @@
<div align="center">
<h1><code>setup-rokit</code></h1>
<p>
<a href="https://github.com/CompeyDev/setup-rokit/actions?query=workflow%3ACI"><img src="https://github.com/CompeyDev/setup-rokit/workflows/CI/badge.svg" alt="CI" /></a>
<a href="https://github.com/CompeyDev/setup-rokit/actions?query=workflow%3Atest"><img src="https://github.com/CompeyDev/setup-rokit/workflows/test/badge.svg" alt="CI" /></a>
</p>
</div>
@ -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.0
- 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.0
- 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

@ -24,31 +24,9 @@ runs:
steps:
- name: Download Rokit
run: |
case ${{ runner.os }} in
Linux) pattern="*linux-x86_64.zip" ;;
macOS) pattern="*macos-x86_64.zip" ;;
Windows) pattern="*windows-x86_64.zip" ;;
esac
gh release download ${{ inputs.version }} --repo rojo-rbx/rokit --pattern $pattern
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/rojo-rbx/rokit/main/scripts/install.sh | bash
env:
GITHUB_TOKEN: ${{ inputs.token }}
shell: bash
- name: Install Rokit
run: |
unzip rokit*.zip
./rokit self-install
shell: bash
- name: Delete artifacts
run: |
rm rokit*.zip
if ${{ runner.os == 'Windows' }}; then
rm rokit.exe
else
rm rokit
fi
GITHUB_PAT: ${{ inputs.token }}
shell: bash
- name: Add Rokit to PATH
@ -61,17 +39,14 @@ runs:
run: echo "$HOME/.rokit/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
shell: powershell
- name: Create auth file
run: |
cat > $HOME/.rokit/auth.toml << EOF
github = "${{ inputs.token }}"
EOF
- name: Authenticate
run: rokit authenticate github --token ${{ inputs.token }}
shell: bash
- 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