Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dipok dipu patch 2 #1

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
52 changes: 52 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Unity CI Pipeline 🎻

on:
push: { branches: [main] }

env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}

jobs:
buildWindows:
name: Build for Windows 🖥️
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Restore Library cache
uses: actions/cache@v2
with:
path: Library
key: Library-build-StandaloneWindows64
restore-keys: |
Library-build-
Library-

- name: Build Unity
id: unityBuild
uses: game-ci/unity-builder@v2
with:
targetPlatform: StandaloneWindows64


- name: Upload build to itch.io
uses: robpc/itchio-upload-action@v1
with:
path: build/StandaloneWindows64
project: dipok/bs23-battlecity
channel: win
version: ${{ steps.unityBuild.outputs.buildVersion}}
api-key: ${{ secrets.ITCH_API_KEY }}



#- name: Discord Notification
# uses: fateyan/action-discord-notifier@v1
#with:
# message-title: windows Build Link https://brainstation23.itch.io/westwood-manor
#webhook: ${{ secrets.DISCORD_WEBHOOK }}
52 changes: 52 additions & 0 deletions .github/workflows/CIWebGL.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Unity CI Pipeline 🎻

on:
push: { branches: [main] }

env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}

jobs:
buildForWebGL:
name: Build for Web 🖥️
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Restore Library cache
uses: actions/cache@v2
with:
path: Library
key: Library-build-WebGL
restore-keys: |
Library-build-
Library-

- name: Build Unity
id: unityBuild
uses: game-ci/unity-builder@v2
with:
targetPlatform: WebGL


- name: Upload build to itch.io
uses: robpc/itchio-upload-action@v1
with:
path: build/WebGL
project: dipok/bs23-battlecity
channel: HTML5 / Playable in browser
version: ${{ steps.unityBuild.outputs.buildVersion}}
api-key: ${{ secrets.ITCH_API_KEY }}



#- name: Discord Notification
# uses: fateyan/action-discord-notifier@v1
#with:
# message-title: windows Build Link https://brainstation23.itch.io/westwood-manor
#webhook: ${{ secrets.DISCORD_WEBHOOK }}
8 changes: 8 additions & 0 deletions Assets/Audio.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Audio/BackGround.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audio/BackGround.wav.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Audio/BrickSfx.mp3
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audio/BrickSfx.mp3.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Audio/DamagedTankAudio.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audio/DamagedTankAudio.wav.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Audio/EnemyTankDestroyed.mp3
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audio/EnemyTankDestroyed.mp3.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Audio/GameOver.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audio/GameOver.wav.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Audio/IdlePlayer.mp3
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audio/IdlePlayer.mp3.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Audio/LevelStartingAudio.mp3
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audio/LevelStartingAudio.mp3.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Audio/MainMenuSound.mp3
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audio/MainMenuSound.mp3.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Audio/PlayerMoving.mp3
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audio/PlayerMoving.mp3.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Audio/PlayerShooting.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audio/PlayerShooting.wav.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Audio/PlayerTank&CityDestroyedAudio.mp3
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audio/PlayerTank&CityDestroyedAudio.mp3.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Audio/PowerUpObtained.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audio/PowerUpObtained.wav.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Audio/ScoreCalculation.mp3
Binary file not shown.
Loading