unifica tentativa e letra #7
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: 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 |