Debugging the github ref

This commit is contained in:
Arpit Mohan 2020-10-30 13:42:31 +05:30
parent 587a90af0f
commit 71f5daac3a
2 changed files with 11 additions and 0 deletions

View File

@ -41,6 +41,16 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: '10.16.3'
- name: Set the server Docker image to be used for testing
id: server
run: |
DOCKER_IMAGE_NAME="appsmith/appsmith-server-ee:release"
echo ${GITHUB_REF}
echo $GITHUB_REF
if [ ${GITHUB_REF} == '/refs/heads/master' ]; then
DOCKER_IMAGE_NAME="appsmith/appsmith-server-ee:nightly"
fi
echo ::set-output name=DOCKER_IMAGE_NAME::${DOCKER_IMAGE_NAME}
# Retrieve npm dependencies from cache. After a successful run, these dependencies are cached again
- name: Cache npm dependencies

View File

@ -7,3 +7,4 @@
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
For details on setting up your development machine, please refer to the [Setup Guide](https://github.com/appsmithorg/appsmith/blob/release/contributions/ClientSetup.md)