Debugging the github ref
This commit is contained in:
parent
587a90af0f
commit
71f5daac3a
10
.github/workflows/client.yml
vendored
10
.github/workflows/client.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user