Skip to content

Commit

Permalink
changed pwd location (#31)
Browse files Browse the repository at this point in the history
* Made Pawns visible while selecting

The pawns were geting hidden behind other sprites  previousely.
I have updated the z-index of all the pawns belonging to the selcted player so that they are drawn above other sprites during selection of pawn for movement. After the movement is complete the z-index is reset back to 0 so that teh next player pawns can be drawn in front

* Update main.yml

* Corrected Syntax

* Corrected syntax

* Used default build task

* Updated directory for build task

* Updated build and added release task

* Updated build actions

* Cahnged release notes generation

* formated the tag as required

* made formating into saparate step

* corrected run task

* Updated set variable for output

* corrected variable

* Added params for getting additional change logs

* Corrected syntax

* Included html files to build

* saparated build and release jobs

* Corrected artifacts for release

* Updated release artifacts paths

* corrected yml syntax

* corrected artifact name

* Added zip files

* removed extra path folder

* changed the artifacts to tar's instead of direct files

* corrected path for upload

* corrected tar path

* corrected tar path

* removed unnecessary path for tar file

* corrected artifact name while uploading.

* asset path correction

* Updated main release with updated changes

* Updated Build path

* Updated path for build

* updated export preset names

* changed base directory

* Removed change directory

* fixed syntax

* changed ped location
  • Loading branch information
mohithsrao authored Dec 26, 2020
1 parent 1d5ecf8 commit 4672a7b
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,18 @@ jobs:
with:
lfs: true

- name: Change Base Directory
run: |
echo $(pwd)
cd ./ChoukaBaraGame
echo $(pwd)
- 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: Windows Build
run: |
mkdir -v -p build/windows/$EXPORT_NAME
echo $(pwd)
cd ./ChoukaBaraGame
echo $(pwd)
godot -v --export "ChoukaBara-Windows" ../build/windows/$EXPORT_NAME.exe
- name: Upload Artifact
uses: actions/upload-artifact@v1
Expand All @@ -53,19 +52,18 @@ jobs:
with:
lfs: true

- name: Change Base Directory
run: |
echo $(pwd)
cd ./ChoukaBaraGame
echo $(pwd)
- 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: Web Build
run: |
mkdir -v -p build/web/$EXPORT_NAME
echo $(pwd)
cd ./ChoukaBaraGame
echo $(pwd)
godot -v --export "ChoukaBara-HTML5" ../build/web/index.html
- name: Upload Artifact
uses: actions/upload-artifact@v1
Expand Down

0 comments on commit 4672a7b

Please sign in to comment.