V1.0.0 - Initial Release #1
Workflow file for this run
This file contains 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: 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 |