Skip to content

Commit

Permalink
Merge pull request #21 from endlessm/publish-action
Browse files Browse the repository at this point in the history
github: Add workflow to publish to Asset Library
  • Loading branch information
dbnicholson authored Jun 21, 2024
2 parents 0fdda63 + 8626f26 commit 974bcb5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/godot-asset-library.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
release:
types:
- published

name: Push to Godot Asset Library

jobs:
publish:
if: github.event.action == 'released'
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: 12617

0 comments on commit 974bcb5

Please sign in to comment.