Skip to content

refactor do github actions #8

refactor do github actions

refactor do github actions #8

Workflow file for this run

name: Build e Publicacao
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: Setup Pages
uses: actions/configure-pages@v3
- name: 🏗️ Build
run: npm install && npm run build
- 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 to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2