-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
|
||
|
||
|
||
<div align="center"> | ||
<h1>Rojo Build Action</h1> | ||
This action swiftly builds your rojo places, models & assets. | ||
<br> | ||
<br> | ||
<img src="https://media.discordapp.net/attachments/1016799328389574747/1031582625418190888/unknown.png"></img> | ||
</div> | ||
|
||
|
||
|
||
## Inputs | ||
|
||
### `output` | ||
|
||
**Required** This is the file you want the action to output the build at. Make sure this does not include any file extensions. | ||
|
||
### `type` | ||
|
||
**Required** The type of file to output (rbxm, rbxlx, etc.). Defaults to rbxlx. | ||
|
||
## Example usage | ||
|
||
```yml | ||
on: | ||
workflow_dispatch: | ||
push: {branches: ["master", "main"]} | ||
|
||
jobs: | ||
status: | ||
runs-on: ubuntu-latest | ||
name: Build Rojo Project | ||
steps: | ||
- name: Checkout files | ||
uses: actions/checkout@v3 | ||
- name: Build | ||
uses: CompeyDev/rojo-build-action@0.1.0 | ||
with: | ||
output: model | ||
id: rbxm | ||
- name: Commit and push if there are changes | ||
run: |- | ||
git diff | ||
git config --global user.email "hi@devcomp.xyz" | ||
git config --global user.name "BuildBot" | ||
git diff --quiet || (git add -u && git commit -m "chore(deploy): build rojo project") | ||
git push | ||
``` | ||
--- | ||
### Discord Status: 🔴 | ||
--- | ||
This repository is licensed under a [MIT](https://compeydev.mit-license.org) License. |