Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.
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
29 changes: 29 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Nightly

on:
workflow_dispatch :
branches :
- dev
# schedule :
# - cron: 0 02 * * *

jobs:
build:
runs-on: self-hosted
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it. Dummy edit
- uses: actions/checkout@v2
# Check if the action works
- name: Run a one-line script
run: echo Hello, world!
- name: Fetch unshallow
run: git fetch --unshallow
# Run psake
- name: Run a multi-line script
run: >
.\pipelines\runbuild.ps1 -properties
@{
"buildConfig" = "Release";
"updateAssemblyInfo" = $true;
"isTestingEnabled" = $true;
}