Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
josefdc authored Oct 3, 2024
1 parent 0d298f3 commit b948009
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,16 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16' # Asegúrate de usar la versión que tu proyecto requiere
node-version: '18.19.1' # Asegúrate de usar la versión que tu proyecto requiere

- name: Install dependencies
run: npm install

# Agregar la clave de OpenAI a .env usando GitHub Secrets
- name: Set up OpenAI API Key
run: |
echo "OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}" > .env
- name: Build Tailwind CSS
run: npx tailwindcss -i ./style.css -o ./output.css --minify

Expand Down

0 comments on commit b948009

Please sign in to comment.