Skip to content

V1.0.0 - Initial Release #1

V1.0.0 - Initial Release

V1.0.0 - Initial Release #1

Workflow file for this run

name: Populate Depot json
on:
# runs when this repository's releases are modified
release:
# allows for manual dispatching of the workflow
workflow_dispatch:
jobs:
populate:
runs-on: ubuntu-latest
permissions:
# permits reading of releases and writing to the depot branch
contents: write
steps:
# where to find gh action and what version to use
- uses: LemLib/[email protected]
with:
# gives the github action the permissions specified above
token: ${{ github.token }}
# target repo for depots
repo: LemLib/hot-cold-asset
# where to read releases from (can be omitted if repo is also the repo from which to read releases from, but it doesn't sem to be working at the moment)
source-repo: LemLib/hot-cold-asset
# makes the json output human readable
readable-json: true