Resolve current branch on release job
This commit is contained in:
parent
74ac556e9e
commit
14ffba2e12
|
@ -13,7 +13,7 @@ on:
|
|||
- develop
|
||||
|
||||
env:
|
||||
branch: ${{ github.event.pull_request.head.ref }}
|
||||
BRANCH: ${{ github.event.pull_request.head.ref }}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -36,7 +36,7 @@ jobs:
|
|||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: budibase/budibase-pro
|
||||
ref: ${{ env.branch }}
|
||||
ref: ${{ env.BRANCH }}
|
||||
path: './pro'
|
||||
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
||||
- name: Setup pro
|
||||
|
|
|
@ -20,6 +20,7 @@ env:
|
|||
POSTHOG_TOKEN: ${{ secrets.POSTHOG_TOKEN }}
|
||||
INTERCOM_TOKEN: ${{ secrets.INTERCOM_TOKEN }}
|
||||
POSTHOG_URL: ${{ secrets.POSTHOG_URL }}
|
||||
BRANCH: ${{ github.event.pull_request.head.ref }}
|
||||
|
||||
jobs:
|
||||
release:
|
||||
|
@ -36,7 +37,7 @@ jobs:
|
|||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: budibase/budibase-pro
|
||||
ref: ${{ env.branch }}
|
||||
ref: ${{ env.BRANCH }}
|
||||
path: './pro'
|
||||
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
||||
- name: Setup pro
|
||||
|
|
Loading…
Reference in New Issue