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

chore: automate staging deployment #190

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- "created"

jobs:
cd:
cd-prd:
strategy:
matrix:
include:
Expand All @@ -29,3 +29,27 @@ jobs:
docker-tag: latest
upload-image: true
secrets: inherit

cd-stg:
strategy:
matrix:
include:
- unity-docker-image: unityci/editor:2022.3.12f1-webgl-3.0.0
service-name: asset-bundle-converter
platform-target: webgl
- unity-docker-image: unityci/editor:2022.3.12f1-windows-mono-3.0.0
service-name: asset-bundle-converter-windows
platform-target: windows
- unity-docker-image: unityci/editor:2022.3.12f1-mac-mono-3.0.0
service-name: asset-bundle-converter-mac
platform-target: mac

uses: ./.github/workflows/docker-common.yml
with:
service-name: ${{ matrix.service-name }}
unity-docker-image: ${{ matrix.unity-docker-image }}
platform-target: ${{ matrix.platform-target }}
deployment-environment: stg
docker-tag: latest
upload-image: true
secrets: inherit
Loading