Browse Source

Test fix for Build Unified workflow on Push event

fix-unified-icons-setting
Vince Grassia 2 years ago
parent
commit
30c7daf7a0
No known key found for this signature in database
GPG Key ID: 9AD7505E8448CC08
  1. 7
      .github/workflows/build-unified.yml

7
.github/workflows/build-unified.yml

@ -45,7 +45,12 @@ jobs: @@ -45,7 +45,12 @@ jobs:
id: server-branch-name
env:
SERVER_BRANCH: ${{ inputs.server_branch }}
run: echo "server_branch=${SERVER_BRANCH#refs/heads/}" >> $GITHUB_OUTPUT
run: |
if [[ -z "${SERVER_BRANCH}"]]; then
SERVER_BRANCH=master
fi
echo "server_branch=${SERVER_BRANCH#refs/heads/}" >> $GITHUB_OUTPUT
- name: Check Branch to Publish
env:

Loading…
Cancel
Save