Skip to content

Commit

Permalink
Update godot-export.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
h4de5 authored Jan 23, 2020
1 parent 94d6dd2 commit 10e6829
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/godot-export.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,22 @@ jobs:
# Base version. Patch versions are incremented when this action runs.
base_version: 0.0.1
# The download url of the 64 bit Linux Headless Godot executable
godot_executable_download_url: https://downloads.tuxfamily.org/godotengine/3.1.2/Godot_v3.1.2-stable_linux_headless.64.zip
# godot_executable_download_url: https://downloads.tuxfamily.org/godotengine/3.1.2/Godot_v3.1.2-stable_linux_headless.64.zip
godot_executable_download_url: https://downloads.tuxfamily.org/godotengine/3.2/rc2/Godot_v3.2-rc2_linux_headless.64.zip
# The url of the export templates corresponding to the Godot executable version
godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/3.1.2/Godot_v3.1.2-stable_export_templates.tpz
# godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/3.1.2/Godot_v3.1.2-stable_export_templates.tpz
godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/3.2/rc2/Godot_v3.2-rc2_export_templates.tpz
# The relative path containing the "project.godot" file
relative_project_path: ./
# The name of the folder which templates are stored in. Looks like '3.1.1.stable.mono'. Can be found at %APPDATA\Roaming\Godot\templates on Windows and ~/.local/share/godot/templates on Linux.
godot_template_version: 3.1.2.stable
#godot_template_version: 3.1.2.stable
godot_template_version: 3.2.rc2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# upload generated exports to another server
- name: Upload Exports Job
run: |
ls -la /home/runner/.local/share/godot/builds/1
sudo apt -yq install rsync openssh-client sshpass
rsync -vv /home/runner/.local/share/godot/builds/1/* --rsync-path="/bin/rsync" --Port=${{ secrets.UPLOAD_PORT }} --rsh="/usr/bin/sshpass -p ${{ secrets.UPLOAD_PASS }} ssh -o StrictHostKeyChecking=no -l ${{ secrets.UPLOAD_USER }} -p ${{ secrets.UPLOAD_PORT }}" ${{ secrets.UPLOAD_USER }}@${{ secrets.UPLOAD_HOST }}:${{ secrets.UPLOAD_PATH }}
# sudo apt -yq install rsync openssh-client sshpass
rsync -vv /home/runner/.local/share/godot/builds/1/* --rsync-path="/bin/rsync" --port="${{ secrets.UPLOAD_PORT }}" --rsh="/usr/bin/sshpass -p ${{ secrets.UPLOAD_PASS }} ssh -o StrictHostKeyChecking=no -l ${{ secrets.UPLOAD_USER }} -p ${{ secrets.UPLOAD_PORT }}" ${{ secrets.UPLOAD_USER }}@${{ secrets.UPLOAD_HOST }}:${{ secrets.UPLOAD_PATH }}

0 comments on commit 10e6829

Please sign in to comment.