From b0d3462b656b044f58c17199df34106526dbdeff Mon Sep 17 00:00:00 2001 From: Vurv <56230599+Vurv78@users.noreply.github.com> Date: Thu, 13 Jul 2023 22:02:19 -0700 Subject: [PATCH] Add workshop deployment action --- .github/workflows/deploy.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..0677c65 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -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@master + with: + id: 773402917 + changelog: "Deployment via Github to latest changes" + env: + STEAM_USERNAME: ${{ secrets.WIRETEAM_WORKSHOP_USERNAME }} + STEAM_PASSWORD: ${{ secrets.WIRETEAM_WORKSHOP_PASSWORD }} \ No newline at end of file