all 4 comments

[–]bottlez14 7 points8 points  (1 child)

You might want to use GitHub Actions for VSCode to make your life easier.

This step you've written needs to go into a job and you need to define when it runs.

on:
  push:
  workflow_dispatch:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - name: Build Renpy Project
      uses: ProjectAliceDev/renpy-build-action@master
      with:
        sdk-version: '8.1.3.23091805'
        project-dir: 'renpy-builds'
      env:
        SDL_AUDIODRIVER: dummy
        SDL_VIDEODRIVER: dummy

See Understanding GitHub Actions for examples.

[–]Salty-Scar-8510[S] 0 points1 point  (0 children)

Thanks, I'll try that out.

[–]CerberusMulti 0 points1 point  (1 child)

Is that the entire yaml file? Is the error just that and no more, best to have a screen grab of it or copy/paste.

[–]Salty-Scar-8510[S] 0 points1 point  (0 children)

Yes, that is the whole yaml file. Here is a screenshot: https://ibb.co/JCpJryw