Skip to content

Commit

Permalink
Add automatic Workshop workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thecraftianman committed Jul 14, 2024
1 parent 01c8a34 commit 6f70871
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/workshop-upload.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deploy to Workshop

on:
push:
branches:
- master
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: project

- name: Upload to Workshop
uses: CFC-Servers/gmod-upload@master
with:
id: 2782407502
changelog: "${{ github.event.head_commit.message }}"
title: "[ACF] Removed Models"
type: "model"
tag1: "build"
tag2: "fun"
tag3: "realism"
env:
STEAM_USERNAME: ${{ secrets.ACF_STEAM_ACCOUNT }}
STEAM_PASSWORD: ${{ secrets.ACF_STEAM_PASSWORD }}

0 comments on commit 6f70871

Please sign in to comment.