Skip to content

Commit

Permalink
Auto build
Browse files Browse the repository at this point in the history
  • Loading branch information
CrimRecya committed Dec 16, 2024
1 parent 726de6e commit baf31e9
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/nightly-pack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Nightly Build

on:
push:
branches:
- develop-Mix4BEtest
- develop-Mix4ECpack

env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .

# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
BUILD_CONFIGURATION: DevBuild
# GIT_COMMIT: $(git rev-parse --short "$GITHUB_SHA")
# GIT_BRANCH: ${GITHUB_REF#refs/heads/}

jobs:
build:
runs-on: windows-2019

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Build Phobos
uses: ./.github/actions/build-phobos # Build steps are reused
with:
sln-path: ${{env.SOLUTION_FILE_PATH}}
build-config: ${{env.BUILD_CONFIGURATION}}

0 comments on commit baf31e9

Please sign in to comment.