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

Set up CI runs for PRs and pushes to the Development branch #488

Merged
merged 1 commit into from
Jan 13, 2025
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/composite/buildSetup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
- name: Optionally set BUILD_SUFFIX
shell: bash
run: |
if [[ ${{ github.event.inputs.debug-build }} == 'true' ]]; then
if [[ ${{ github.event.inputs.debug-build || 'true' }} == 'true' ]]; then
echo "BUILD_SUFFIX=-debug" >> $GITHUB_ENV
else
echo "BUILD_SUFFIX=-release" >> $GITHUB_ENV
Expand Down Expand Up @@ -35,7 +35,7 @@ runs:
- name: Set FOLDER_NAME
shell: bash
run: |
echo "FOLDER_NAME=${EXPORT_NAME}${{ github.event.inputs.folder-suffix }}${GH_USERNAME}${BUILD_TIME}" >> $GITHUB_ENV
echo "FOLDER_NAME=${EXPORT_NAME}${{ github.event.inputs.folder-suffix || 'automated_build' }}${GH_USERNAME}${BUILD_TIME}" >> $GITHUB_ENV
- name: Setup
shell: bash
run: |
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/export-c7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ on:
type: boolean
description: Append ISO8601 date/time to folder name
default: true
pull_request:
branches:
- 'Development'
# Add any long-lived branches that need CI here.
push:
branches:
- 'Development'
# Add any long-lived branches that need CI here.


env:
GODOT_VERSION: 4.2.2
Expand Down
Loading