mirror of
https://github.com/ACF-Team/CFW.git
synced 2025-03-04 03:03:16 -05:00
30 lines
638 B
YAML
30 lines
638 B
YAML
name: Deploy to Workshop
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
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: 3154971187
|
|
changelog: "${{ github.event.head_commit.message }}"
|
|
title: "Contraption Framework"
|
|
type: "tool"
|
|
tag1: "build"
|
|
env:
|
|
STEAM_USERNAME: ${{ secrets.ACF_STEAM_ACCOUNT }}
|
|
STEAM_PASSWORD: ${{ secrets.ACF_STEAM_PASSWORD }}
|