added docker steps #10
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 | |
pull_request: | |
branches: | |
- main | |
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_PROTOCOL: ${{ vars.TYPESENSE_PROTOCOL }} | |
TYPESENSE_HOST: ${{ vars.TYPESENSE_HOST }} | |
TYPESENSE_PORT: ${{ vars.TYPESENSE_PORT }} | |
TYPESENSE_API_KEY: ${{ secrets.TYPESENSE_API_KEY }} | |
run: npm run build | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
tags: akyriako78/docs-next-preview:gh | |
# - 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" | |