Skip to content

vaguevoid/actions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

113 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Void GitHub Actions

This public repository contains GitHub actions for use with the Void game development platform

The following high level composite actions are recommended

  • Share on Web - Build, Package, and Deploy to the Web on https://play.void.dev/
  • Share on Steam - Build, Package, and Deploy to Steam
  • Share on Discord - Build, Package, and Deploy to Discord
  • ...more to come

Share on Web

This action can be used to build and share your game on https://play.void.dev/

    runs-on: ubuntu-latest
    steps:
      - name: Checkout Repo
        uses: actions/checkout@v4

      - name: Build, Package, and Deploy to Web
        uses: vaguevoid/actions/share/on/web@v1
        with:
          label:        "latest"                          # label your deploy
          organization: "acme"                            # your play.void.dev organization name
          game:         "pong"                            # your play.void.dev game name
          token:        ${{ secrets.VOID_ACCESS_TOKEN }}  # your play.void.dev personal access token

Share on Steam

This action can be used to build, package, and deploy your Void game to Steam

  runs-on: ubuntu-latest
  steps:
    - name: Checkout Repo
      uses: actions/checkout@v4
    
    - name: Build, Package, and Deploy to Steam
      uses: vaguevoid/actions/share/on/steam@v1
      with:
        executable:        "my-game"                       # name (without extension) to use for generated executables
        username:          gordonja                        # your Steam username
        configVdf:         ${{ secrets.STEAM_CONFIG_VDF }} # a Saved Steam login session (see below)
        appId:             "xxxx"                          # the Steam Application ID
        windowsDepotId:    "xxxx"                          # the Steam Depot ID for your Windows binaries
        macosDepotId:      "xxxx"                          # the Steam Depot ID for your MacOS binaries (optional)
        linuxDepotId:      "xxxx"                          # the Steam Depot ID for your Linux binaries (optional)
        setLiveBranch:     "beta"                          # the Steam branch to set live with this build (optional)
        buildDescription:  "latest and greatest"           # a build description (optional)

For actions that deploy to steam you will need to provide the contents of a Steam config.vdf configuration file generated by the steamcmd +login action and stored as a GitHub secret. You may have to manually regenerate and upload a new secret every 30 days - see detailed instructions.

Share on Discord

coming soon

Other Actions

The high level share actions above make many simplifying assumptions. If they do not meet your needs you can drop down to the lower level actions below and combine them to build your own workflow steps:

About

GitHub actions for the Void game development platform

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors