Skip to content

Commit

Permalink
Changes of latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
mahdi-malv committed Jan 20, 2021
0 parents commit 1d1b083
Show file tree
Hide file tree
Showing 43 changed files with 4,609 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.vscode/
.idea
Library
Logs
Packages
ProjectSettings
Temp
obj
Assets/Plugins/Editor

*.meta
*.sln
*.csproj
*.apk

.DS_Store
32 changes: 32 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
stages:
- build
- source

image: alpine:latest # Should consider using Unity

build:
stage: build
script:
- echo "Nothing here."

upload_source:
stage: source
only:
- master
- develop
before_script:
- echo "---- Applying Git ----"
- apk update; apk add git; apk add openssh
- echo "$SSH_PRIVATE_KEY" > ~/key
- chmod 600 ~/key
- git config --global user.email "[email protected]"
- git config --global user.name "mahdi-malv"
script:
- echo "---- Upload source to Github ----"
- rm -rf .git || true # In case it already existed
- export GIT_SSH_COMMAND="ssh -i ~/key -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"
- git init; git remote add source [email protected]:pusheco/pushe-unity.git
- git add -A; git commit -m 'Changes of latest version'
- git push -f source master
dependencies:
- build
Loading

0 comments on commit 1d1b083

Please sign in to comment.