new button added for redirect to scholarx platform #835
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is the work flow to generate preview links for Pull Requests | |
name: PR-Preview-Generator | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Installing Surge | |
run: npm i -g surge | |
- name: Deploying on Surge | |
env: | |
DEPLOY_DOMAIN: https://pr-${{ github.event.number }}-sef-site.surge.sh | |
SURGE_TOKEN: aadbfcb04e3dae63bb3561ca05f93eb1 | |
run: surge ./ $DEPLOY_DOMAIN --token $SURGE_TOKEN |