Skip to content
box

GitHub Action

gmod-upload

v0.1.4 Latest version

gmod-upload

box

gmod-upload

Packs a Garry's Mod addon to a .gma file and uploads to the Steam workshop

Installation

Copy and paste the following snippet into your .yml file.

              

- name: gmod-upload

uses: Vurv78/[email protected]

Learn more about this action in Vurv78/gmod-upload

Choose a version

gmod-upload

This is an action to upload a Garry's Mod addon to the steam workshop.

Example

name: Deploy to Workshop

on:
  workflow_dispatch:

jobs:
  deploy:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@master
      - uses: vurv78/gmod-upload@master
        with:
          id: 2466875474
          changelog: "Deployment via Github to latest changes"
        env:
          STEAM_USERNAME: ${{ secrets.STEAM_USERNAME }}
          STEAM_PASSWORD: ${{ secrets.STEAM_PASSWORD }}

Taken from https://github.com/Vurv78/WebAudio/blob/main/.github/workflows/deploy.yml