Add support for Roblox's internal Stories and Storybooks #535
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
name: Release | |
on: | |
pull_request: | |
release: | |
types: [published] | |
push: | |
branches: | |
- main | |
jobs: | |
publish-github-release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Roblox/setup-foreman@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get model file name | |
run: | | |
name=$(jq -r .name default.project.json) | |
echo "MODEL_FILE=$name.rbxm" >> $GITHUB_ENV | |
- name: Install packages | |
run: lune run wally-install | |
- name: Build | |
run: lune run build -- --target prod --output ${{ env.MODEL_FILE }} | |
- uses: softprops/action-gh-release@v1 | |
if: ${{ github.event.release }} | |
with: | |
files: ${{ env.MODEL_FILE }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
publish-plugin: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Roblox/setup-foreman@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install packages | |
run: lune run wally-install | |
- name: Publish nightly build to Creator Store | |
if: github.ref == 'refs/heads/main' | |
run: lune run publish-plugin -- --target dev --apiKey ${{ secrets.ROBLOX_API_KEY }} | |
- name: Publish release to Creator Store | |
if: github.event.release | |
run: lune run publish-plugin -- --target prod --apiKey ${{ secrets.ROBLOX_API_KEY }} |