Skip to content

Commit

Permalink
Workshop deployment via github actions (#2651)
Browse files Browse the repository at this point in the history
* Workshop deployment via github actions

* Lua 5.4 `string.pack` implementation

Also fixed reference to wiremod/workshop-upload, since we don't have it on the github market. Need anticept to agree to some licensing thing

* Use new gmod-upload action

Includes the gma packer inside.

Much more minimal implementation from scratch that doesn't use docker, just a composite action running bash scripts.
  • Loading branch information
Vurv78 authored Jul 6, 2023
1 parent 6ed89b3 commit 3fecefd
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Deploy to Workshop

on:
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest

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

0 comments on commit 3fecefd

Please sign in to comment.