Skip to content

Commit

Permalink
PoseWarping Node | Update to Godot 4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ywmaa committed Oct 3, 2024
1 parent c074df4 commit a08bddf
Show file tree
Hide file tree
Showing 67 changed files with 3,847 additions and 453 deletions.
29 changes: 15 additions & 14 deletions .github/workflows/Publish-Godot-Project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,22 @@ env:
PROJECT_NAME: "AMSG" # Needs to be added, PLEASE DON'T USE SPACES
ITCH_PROJECT_NAME: "amsg" # Needs to be added
ITCH_USER_NAME: "ywmaa" # Needs to be added
GODOT_VERSION: 4.1.1 # Needs to be added
GODOT_VERSION: 4.3 # Needs to be added
jobs:
CleanArtifacts:
#CleanArtifacts:
# This job clears out the previous artifacts made so you don't run out of space in your github account
runs-on: ubuntu-latest
steps:
- uses: kolpav/purge-artifacts-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
expire-in: 1hr
#runs-on: ubuntu-latest
#steps:
#- uses: kolpav/purge-artifacts-action@v1
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# expire-in: 1hr

Export:
needs: CleanArtifacts # wait for artifacts to clean before making a new one
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Download + Authorize Godot
run: |
Expand Down Expand Up @@ -91,17 +91,18 @@ jobs:
./godot --headless --path ./ --export-release "Linux/X11" ./exports/${{ env.PROJECT_NAME }}.x86_64
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: exports
path: exports
overwrite: true

Release:
needs: Export
if: github.event_name == 'workflow_dispatch' && github.event.inputs.release_github_page
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Version
id: tag_version
Expand All @@ -114,7 +115,7 @@ jobs:
run: exit 1

- name: Download Exports
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: exports
path: exports
Expand Down Expand Up @@ -178,7 +179,7 @@ jobs:
content: v${{ github.event.inputs.export_version }}
mode: 0655

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: VERSION
path: ./VERSION.txt
Expand All @@ -189,7 +190,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download Exports
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: exports
path: exports
Expand Down
Binary file modified AMSG_Examples/Character/Animations/Idle.res
100755 → 100644
Binary file not shown.
Binary file modified AMSG_Examples/Character/Animations/JogForward.res
100755 → 100644
Binary file not shown.
Binary file modified AMSG_Examples/Character/Animations/Run.res
100755 → 100644
Binary file not shown.
Binary file modified AMSG_Examples/Character/Animations/Walk.res
100755 → 100644
Binary file not shown.
Loading

0 comments on commit a08bddf

Please sign in to comment.