Fixed clip planes lagging behind when parented to a bone on a model p… #224
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: update_workshop | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| update-workshop: | |
| if: github.repository == 'CapsAdmin/pac3' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Publish to Steam Workshop | |
| uses: PAC3-Server/gmod-upload@master | |
| env: | |
| STEAM_USERNAME: ${{ secrets.STEAM_NAME }} | |
| STEAM_PASSWORD: ${{ secrets.STEAM_PASSWORD }} | |
| with: | |
| id: ${{ github.ref == 'refs/heads/master' && '104691717' || '3038093543' }} | |
| changelog: ${{ github.event.head_commit.message }} | |
| config: ${{ github.ref == 'refs/heads/master' && 'addon.json' || 'addon_develop.json' }} |