1
0
Fork 0
mirror of synced 2024-06-27 02:20:35 +12:00

Link bb and pro branch checkout

This commit is contained in:
Rory Powell 2022-04-13 21:42:09 +01:00
parent 5cfb07916d
commit 05cabcf533

View file

@ -22,11 +22,18 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
with: with:
repository: budibase/budibase-pro repository: budibase/budibase-pro
path: './pro' ref: ${{ steps.extract_branch.outputs.branch }}
path: '../budibase-pro'
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}