Fix branch build's TGS4_GITHUB_REF

This commit is contained in:
Jordan Brown
2020-12-08 17:53:39 -05:00
parent f87f609e38
commit 83aec7ef71
+7 -2
View File
@@ -207,7 +207,10 @@ jobs:
- name: Set TGS4_GITHUB_REF for push
if: ${{ github.event_name == 'push' }}
run: echo "TGS4_GITHUB_REF=${{ github.event.ref }}" >> $env:GITHUB_ENV
shell: bash
run: |
TEMP_GITHUB_REF="${{ github.event.ref }}"
echo "TGS4_GITHUB_REF=${TEMP_GITHUB_REF##*/}" >> $env:GITHUB_ENV
- name: Run Integration Test
run: |
@@ -349,7 +352,9 @@ jobs:
- name: Set TGS4_GITHUB_REF for push
if: ${{ github.event_name == 'push' }}
run: echo "TGS4_GITHUB_REF=${{ github.event.ref }}" >> $GITHUB_ENV
run: |
TEMP_GITHUB_REF="${{ github.event.ref }}"
echo "TGS4_GITHUB_REF=${TEMP_GITHUB_REF##*/}" >> $env:GITHUB_ENV
- name: Run Integration Test
run: |