-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add github action and test get version steps
- Loading branch information
1 parent
64a3c1b
commit c3908a3
Showing
3 changed files
with
29 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[*.{yml,md}] | ||
indent_style = space | ||
indent_size = 2 |
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,23 @@ | ||
name: Auto build Aseprite | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
|
||
jobs: | ||
auto-build: | ||
name: Auto build Aseprite for Windows x64 | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Get Aseprite version | ||
id: get_version | ||
run: | | ||
echo "version=$(./get_version.bat)" >> $GITHUB_OUTPUT | ||
- name: Print Aseprite version | ||
run: | | ||
echo "Aseprite version: ${{ steps.get_version.outputs.version }}" |
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,3 @@ | ||
set ASEPRITE_VERSION=v1.3.5 | ||
|
||
echo %ASEPRITE_VERSION% |