added all env vars and secrets #7
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
on: | |
push: | |
branches: | |
- create-build-workflow # Change this to your default branch if it's different | |
jobs: | |
build: | |
environment: preview | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 # Use Node.js 18 here | |
- name: Install dependencies | |
run: npm install | |
- name: Build site | |
env: | |
TYPESENSE_HOST: ${{ vars.TYPESENSE_HOST }} | |
run: npm run build | |
- name: Say Hi! | |
env: | |
TYPESENSE_PROTOCOL: ${{ vars.TYPESENSE_PROTOCOL }} | |
TYPESENSE_HOST: ${{ vars.TYPESENSE_HOST }} | |
TYPESENSE_PORT: ${{ vars.TYPESENSE_PORT }} | |
TYPESENSE_API_KEY: ${{ secrets.TYPESENSE_API_KEY }} | |
run: | | |
echo "Typesense target is $TYPESENSE_PROTOCOL://$TYPESENSE_HOST:$TYPESENSE_PORT" | |