-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from endlessm/push-qtozlqwsozvz
Publish new versions with GitHub Actions
- Loading branch information
Showing
4 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
# Normalize EOL for all files that Git considers text files. | ||
* text=auto eol=lf | ||
|
||
# Exclude GitHub Actions-related files from published asset | ||
/.github export-ignore | ||
/asset-template.json.hb export-ignore | ||
|
||
# Exclude artwork sources | ||
/asset-sources export-ignore |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot | ||
# Set update schedule for GitHub Actions | ||
|
||
version: 2 | ||
updates: | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
# Check for updates to GitHub Actions every week | ||
interval: "weekly" |
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
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: | ||
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: 3360 | ||
assetTemplate: asset-template.json.hb |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"title": "Block Coding Demos", | ||
"description": "These are demos for the Godot Block Coding Plugin. Intended to show the potential and find limitations on the plugin, in order to instruct its development.", | ||
"category_id": "10", | ||
"godot_version": "4.3", | ||
"version_string": "{{ context.release.name }}", | ||
"cost": "MIT", | ||
"support_level": "community", | ||
"download_provider": "GitHub", | ||
"download_commit": "{{ env.GITHUB_SHA }}", | ||
"browse_url": "{{ context.repository.html_url }}", | ||
"issues_url": "{{ context.repository.html_url }}/issues", | ||
"icon_url": "https://raw.githubusercontent.com/endlessm/godot-block-coding/refs/heads/main/icon.png" | ||
} |