GitHub Action for VU Mod Manager
This GitHub Action automatically downloads and installs the vumm tool and runs the publish command on it.
An example workflow can be seen below
name: publish
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Publish
uses: BF3RM/vumm-action
env:
VUMM_TOKEN: ${{ secrets.VUMM_TOKEN }}
The following inputs can be used as step.with
keys
Name | Default | Description |
---|---|---|
version |
latest |
VU Mod Manager version |
tag |
latest |
Tag to publish to (latest, dev, qa, etc...) |
workdir |
. |
Working directory |
The following environment variables can be used as step.env
keys
Name | Description |
---|---|
VUMM_TOKEN |
Access token of VUMM for authenticating |
VUMM_REGISTRY |
Custom registry url |
The Venice Unleashed Mod Manager Registry is available under the MIT license. See the LICENSE file for more info.