Skip to content

ci(github): tidy release-please.yml #37

ci(github): tidy release-please.yml

ci(github): tidy release-please.yml #37

Workflow file for this run

name: build
on: [push, pull_request]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Ren'Py
uses: remarkablegames/setup-renpy@v1
with:
web: true
- name: Web build
run: renpy-launcher web_build . --destination dist
- name: Deploy
if: github.ref_name == 'master'
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: dist
- name: Upload artifacts
if: github.ref_name == 'master'
uses: actions/upload-artifact@v4
with:
name: build-artifact
path: dist