mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2025-05-01 20:42:01 +02:00
Clean up the CI file a bit
This commit is contained in:
parent
f73db61c1c
commit
ccb123bc99
3 changed files with 42 additions and 44 deletions
.github/workflows
40
.github/workflows/build.yml
vendored
Normal file
40
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
name: "Build"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
env:
|
||||
PROJECT_NAME: ${{ github.event.repository.name }}
|
||||
GODOT_VERSION: 3.2.3
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container:
|
||||
image: barichello/godot-ci:3.2.3
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup
|
||||
run: |
|
||||
mkdir -p ~/.local/share/godot/templates
|
||||
mv /root/.local/share/godot/templates/$GODOT_VERSION.stable ~/.local/share/godot/templates/$GODOT_VERSION.stable
|
||||
- name: Linux Build
|
||||
run: |
|
||||
mkdir -p build/$PROJECT_NAME-linux
|
||||
godot --export "Linux" build/$PROJECT_NAME-linux/$PROJECT_NAME
|
||||
cd build/$PROJECT_NAME-linux
|
||||
zip -r ../$PROJECT_NAME-linux.zip .
|
||||
- name: MacOS Build
|
||||
run: |
|
||||
godot --export "Mac OS" build/$PROJECT_NAME-macos.zip
|
||||
- name: Install rsync
|
||||
run: apt-get update && apt-get install -y rsync
|
||||
- name: Deploy
|
||||
uses: JamesIves/github-pages-deploy-action@3.6.2
|
||||
with:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
BRANCH: gh-pages
|
||||
FOLDER: build
|
||||
CLEAN: true
|
42
.github/workflows/godot-ci.yml
vendored
42
.github/workflows/godot-ci.yml
vendored
|
@ -1,42 +0,0 @@
|
|||
name: "godot-ci export"
|
||||
on: push
|
||||
|
||||
env:
|
||||
GODOT_VERSION: 3.2.3
|
||||
EXPORT_NAME: git-hydra
|
||||
|
||||
jobs:
|
||||
export:
|
||||
name: Export
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: barichello/godot-ci:3.2.3
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
- name: Setup
|
||||
run: |
|
||||
mkdir -v -p ~/.local/share/godot/templates
|
||||
mv /root/.local/share/godot/templates/${GODOT_VERSION}.stable ~/.local/share/godot/templates/${GODOT_VERSION}.stable
|
||||
- name: Linux Build
|
||||
run: |
|
||||
mkdir -v -p build/linux/$EXPORT_NAME
|
||||
godot -v --export "Linux" build/linux/$EXPORT_NAME/$EXPORT_NAME.x86_64
|
||||
cd build/linux
|
||||
zip -r $EXPORT_NAME.zip $EXPORT_NAME
|
||||
rm $EXPORT_NAME -rf
|
||||
- name: Mac Build
|
||||
run: |
|
||||
mkdir -v -p build/mac
|
||||
godot -v --export "Mac OS" build/mac/$EXPORT_NAME.zip
|
||||
- name: Install rsync
|
||||
run: |
|
||||
apt-get update && apt-get install -y rsync
|
||||
- name: Deploy
|
||||
uses: JamesIves/github-pages-deploy-action@3.6.2
|
||||
with:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
BRANCH: gh-pages
|
||||
FOLDER: build
|
||||
CLEAN: true
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue