Merge branch 'release' of github.com:appsmithorg/appsmith into release

This commit is contained in:
Arpit Mohan 2020-10-07 07:17:55 +05:30
commit 0ff4cafc73

View File

@ -24,10 +24,16 @@ jobs:
steps:
# Checkout the code
- uses: actions/checkout@v2
- name: Checkout the merged commit from PR and base branch
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v2
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge
- name: Checkout the head commit of the branch
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@v2
- name: Figure out the PR number
run: echo ${{ github.event.pull_request.number }}
@ -103,10 +109,16 @@ jobs:
steps:
# Checkout the code
- uses: actions/checkout@v2
- name: Checkout the merged commit from PR and base branch
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v2
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge
- name: Checkout the head commit of the branch
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@v2
- name: Use Node.js 10.16.3
uses: actions/setup-node@v1
with:
@ -209,9 +221,15 @@ jobs:
steps:
# Checkout the code
- uses: actions/checkout@v2
- name: Checkout the merged commit from PR and base branch
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v2
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge
- name: Checkout the head commit of the branch
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@v2
- name: Download the react build artifact
uses: actions/download-artifact@v2