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
on: | |
release: | |
types: | |
- published | |
# Cancel any ongoing previous run if the job is re-triggered | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
name: Push to Godot Asset Library | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
name: Push new release | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Push to Godot Asset Library | |
uses: deep-entertainment/[email protected] | |
with: | |
username: ${{ secrets.GODOT_ASSET_LIBRARY_USERNAME }} | |
password: ${{ secrets.GODOT_ASSET_LIBRARY_PASSWORD }} | |
assetId: 3371 | |
assetTemplate: asset-template.json.hb |