diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..e6e59f6 Binary files /dev/null and b/.DS_Store differ diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..30958ca --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,39 @@ +name: Deploy to GitHub Pages + +on: + # Trigger the workflow every time you push to the `main` branch + # Using a different branch name? Replace `main` with your branch’s name + push: + branches: [main] + # Allows you to run this workflow manually from the Actions tab on GitHub. + workflow_dispatch: + +# Allow this job to clone the repo and create a page deployment +permissions: + contents: read + pages: write + id-token: write + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout your repository using git + uses: actions/checkout@v4 + - name: Install, build, and upload your site output + uses: withastro/action@v2 + with: + path: /docs # The root location of your Astro project inside the repository. (optional) + node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 18. (optional) + package-manager: bun@latest # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional) + + deploy: + needs: build + runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 \ No newline at end of file diff --git a/README.md b/README.md index 54950a6..114fcf9 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # 2024.2-T03-Submin -Repositório de projeto da disciplina de REQ-T3. + +Repositório de projeto da Disciplina de REQ-T3 \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml deleted file mode 100644 index 1e131b7..0000000 --- a/mkdocs.yml +++ /dev/null @@ -1,29 +0,0 @@ -docs_dir: -site_name: Submin - -nav: - - Home: index.md - - "Visão de produto": - - visao/cenario.md - - visao/solucao.md - - visao/estrategias.md - - visao/cronograma.md - - visao/interacao.md - - visao/licoes.md - - visao/referencias.md - -theme: - name: material - palette: - primary: black - accent: red - - navigation_depth: 2 - - language: pt-BR - - features: - - navigation.tabs - - navigation.expand - - navigation.top -