Skip to content

unifica tentativa e letra #7

unifica tentativa e letra

unifica tentativa e letra #7

Workflow file for this run

name: CI/CD
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🛎️ Checkout do codigo
uses: actions/checkout@v3
- name: 🔧 Configura Node
uses: actions/setup-node@v3
with:
node-version: "18.x"
cache: "npm"
- name: 🔗 Prepara dependências
run: npm install
- name: 🏗️ Build
run: npm run build -- --base="/${GITHUB_REPOSITORY/*\//}/"
- name: 🔧 Setup Pages
uses: actions/configure-pages@v3
- name: ⬆️ Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: './dist'
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: 🚀 Deploy no GitHub Pages
id: deployment
uses: actions/deploy-pages@v2