summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2024-05-16 16:23:35 -0400
committerNat Goodspeed <nat@lindenlab.com>2024-05-16 16:23:35 -0400
commit006b00b47d8fc0ea89ca799c191b91d49d8f6bb6 (patch)
tree96cbb6611ccbdaeb0adc082110096349e5098b79 /.github
parent7e381d62a8e7f64f1bae96a8ef6b38316427381b (diff)
Add diagnostic output to setvar build step.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yaml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index a33b4a88c7..5854a512d1 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -35,11 +35,14 @@ jobs:
id: setvar
shell: bash
run: |
+ echo "release_run = ${{ github.event.inputs.release_run }}"
+ echo "ref_type = ${{ github.ref_type }}"
+ echo "RELEASE_RUN = $RELEASE_RUN"
echo "release_run=$RELEASE_RUN" >> "$GITHUB_OUTPUT"
+ exit 1
- name: Determine source branch
id: which-branch
- if: env.BUILD
uses: secondlife/viewer-build-util/which-branch@v2
with:
token: ${{ github.token }}