diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml index b487938..0211c98 100644 --- a/.github/workflows/jekyll-gh-pages.yml +++ b/.github/workflows/jekyll-gh-pages.yml @@ -1,27 +1,20 @@ -# Simple workflow for deploying static content to GitHub Pages name: Deploy static content to Pages on: - # Runs on pushes targeting the default branch push: branches: ['main'] - - # Allows you to run this workflow manually from the Actions tab workflow_dispatch: -# Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages permissions: contents: read pages: write id-token: write -# Allow one concurrent deployment concurrency: group: 'pages' cancel-in-progress: true jobs: - # Single deploy job since we're just deploying deploy: environment: name: github-pages @@ -30,10 +23,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Set up Node + - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 cache: 'npm' - name: Install dependencies run: npm install @@ -44,12 +37,7 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v2 with: - # Upload dist repository path: './dist' - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v2 - - - name: Configurar entorno - run: | - echo "VITE_GOOGLE_MAPS_API_KEY=${{ secrets.VITE_GOOGLE_MAPS_API_KEY }}" >> .env.production