Add index.rst as the main entry point for Sphinx documentation #17
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
name: Staging Deployment | |
on: | |
push: | |
pull_request: | |
jobs: | |
build-and-deploy: | |
name: Build and Deploy to Staging | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: List root directory contents for debugging | |
run: ls -R | |
- name: List client/public directory contents for debugging | |
run: ls client/public | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' # Specify Node.js version | |
- name: Install dependencies | |
run: npm install | |
- name: Build the application | |
run: npm run build | |
- name: Deploy to Staging | |
if: github.event_name == 'push' # Deploy only on direct pushes, not pull requests | |
env: | |
STAGING_API_KEY: ${{ secrets.STAGING_API_KEY }} | |
STAGING_API_URL: ${{ secrets.STAGING_API_URL }} | |
run: | | |
# Replace with your deployment command or script | |
curl -X POST -H "Authorization: Bearer $STAGING_API_KEY" -d "@/dist/index.js" "$STAGING_API_URL" |