From a28da3ed22daeaa4b0c2f757e4da9c93c3d8fcb2 Mon Sep 17 00:00:00 2001 From: Davi-D18 Date: Fri, 29 Nov 2024 10:49:21 -0300 Subject: [PATCH] Pasta .github adicionada --- .github/workflows/deploy.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..5304916 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,18 @@ +name: Deploy to GitHub Pages + +on: + push: + branches: + - main # ou o branch que você estiver usando + +jobs: + deploy: + runs-on: ubuntu-latest + permissions: + id-token: write # Adiciona a permissão necessária + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Deploy to GitHub Pages + uses: actions/deploy-pages@v4 +