Compare commits

..

No commits in common. "main" and "v0.1.0" have entirely different histories.
main ... v0.1.0

4 changed files with 36 additions and 40 deletions

View file

@ -18,16 +18,13 @@ 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 (aftman/rokit) - name: Create manifest file
if: matrix.manifest != 'foreman.toml'
run: | run: |
cat > ${{ inputs.path }}/${{ matrix.manifest }} << EOF cat > ${{ inputs.path }}/rokit.toml << 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"
@ -35,17 +32,6 @@ 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:

View file

@ -6,24 +6,9 @@ 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
### 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 ## [0.1.0] - 2024-08-04
### 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.2...HEAD [Unreleased]: https://github.com/CompeyDev/setup-rokit/compare/v0.1.0...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.2]: https://github.com/CompeyDev/setup-rokit/releases/tag/v0.1.2

View file

@ -1,7 +1,7 @@
<div align="center"> <div align="center">
<h1><code>setup-rokit</code></h1> <h1><code>setup-rokit</code></h1>
<p> <p>
<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> <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>
</p> </p>
</div> </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: Use the latest released version of `rokit` with default parameters:
```yaml ```yaml
steps: steps:
- uses: CompeyDev/setup-rokit@v0.1.2 - uses: CompeyDev/setup-rokit@v0.1.0
``` ```
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.2 - uses: CompeyDev/setup-rokit@v0.1.0
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)

View file

@ -24,9 +24,31 @@ runs:
steps: steps:
- name: Download Rokit - name: Download Rokit
run: | run: |
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/rojo-rbx/rokit/main/scripts/install.sh | bash 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
env: env:
GITHUB_PAT: ${{ inputs.token }} 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
shell: bash shell: bash
- name: Add Rokit to PATH - name: Add Rokit to PATH
@ -39,14 +61,17 @@ runs:
run: echo "$HOME/.rokit/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append run: echo "$HOME/.rokit/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
shell: powershell shell: powershell
- name: Authenticate - name: Create auth file
run: rokit authenticate github --token ${{ inputs.token }} run: |
cat > $HOME/.rokit/auth.toml << EOF
github = "${{ inputs.token }}"
EOF
shell: bash shell: bash
- 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" | head -n 1) manifest_path=$(find ${{ inputs.path }} -maxdepth 1 -name "rokit.toml" -o -name "aftman.toml" -o -name "foreman.toml")
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