Updated escoria-demo-game

This commit is contained in:
2023-06-06 19:28:49 +02:00
parent 6d3bd3511c
commit 0d38a8646a
116 changed files with 1670 additions and 1291 deletions

View File

@@ -15,14 +15,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
token: ${{ secrets.DEPLOYMENT_TOKEN }}
token: ${{ secrets.ESCORIA_DEPLOYMENT_TOKEN }}
repository: godot-escoria/escoria-demo-game
ref: "develop"
path: game
- name: "Checkout docs repo"
uses: actions/checkout@v2
with:
token: ${{ secrets.DEPLOYMENT_TOKEN }}
token: ${{ secrets.ESCORIA_DEPLOYMENT_TOKEN }}
repository: godot-escoria/escoria-docs
ref: "devel"
fetch-depth: 0

View File

@@ -38,12 +38,12 @@ jobs:
sudo apt-get install git -y
fi
- name: "Checkout"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"
with:
repository: "godot-escoria/escoria-demo-game"
ref: "develop"
path: "demo-game"
token: "${{ secrets.DEPLOYMENT_TOKEN }}"
token: "${{ secrets.ESCORIA_DEPLOYMENT_TOKEN }}"
fetch-depth: 0
- name: "Filtering out ${{ env.DIR }}"
run: |
@@ -55,12 +55,12 @@ jobs:
git clean -fd
git status
- name: "Checkout"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"
with:
repository: "${{ env.REPO }}"
ref: "develop"
path: "target"
token: "${{ secrets.DEPLOYMENT_TOKEN }}"
token: "${{ secrets.ESCORIA_DEPLOYMENT_TOKEN }}"
fetch-depth: 0
- name: "Apply changes"
run: |

View File

@@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.DEPLOYMENT_TOKEN }}
token: ${{ secrets.ESCORIA_DEPLOYMENT_TOKEN }}
- name: Remove trailing whitespace
run: |
OUTPUT=$(find . -name "*.gd" -type f | xargs sed -i 's/[[:space:]]$//')
@@ -29,7 +29,7 @@ jobs:
id: calculate_version
uses: mathieudutour/github-tag-action@v5.6
with:
github_token: ${{ secrets.DEPLOYMENT_TOKEN }}
github_token: ${{ secrets.ESCORIA_DEPLOYMENT_TOKEN }}
dry_run: true
pre_release_branches: "develop"
append_to_pre_release_tag: "alpha"
@@ -58,12 +58,12 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.DEPLOYMENT_TOKEN }}
token: ${{ secrets.ESCORIA_DEPLOYMENT_TOKEN }}
- name: Create version
id: create_version
uses: mathieudutour/github-tag-action@v5.6
with:
github_token: ${{ secrets.DEPLOYMENT_TOKEN }}
github_token: ${{ secrets.ESCORIA_DEPLOYMENT_TOKEN }}
dry_run: true
pre_release_branches: "develop"
append_to_pre_release_tag: "alpha"
@@ -72,7 +72,7 @@ jobs:
- name: Create a GitHub release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.DEPLOYMENT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ESCORIA_DEPLOYMENT_TOKEN }}
with:
tag_name: ${{ steps.create_version.outputs.new_tag }}
release_name: ${{ steps.create_version.outputs.new_tag }}