diff --git a/.github/workflows/deploy-to-pages.yml b/.github/workflows/deploy-to-pages.yml index 6f4dfab..05b8499 100644 --- a/.github/workflows/deploy-to-pages.yml +++ b/.github/workflows/deploy-to-pages.yml @@ -7,9 +7,6 @@ on: workflow_dispatch: push: branches: ["main"] - pull_request: - types: [opened, synchronize] - branches: ["main"] permissions: contents: write @@ -19,6 +16,9 @@ jobs: build: # The type of runner that the job will run on runs-on: ubuntu-latest + defaults: + run: + working-directory: website # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -28,6 +28,11 @@ jobs: with: node-version: 22 + - name: Versions + run: | + node -v + npm -v + - name: Install dependencies run: npm install @@ -50,7 +55,7 @@ jobs: - name: Deploy to GitHub Pages uses: JamesIves/github-pages-deploy-action@v4.7.6 with: - folder: build + folder: website/build branch: gh-pages diff --git a/.gitignore b/website/.gitignore similarity index 100% rename from .gitignore rename to website/.gitignore diff --git a/CHANGELOG.md b/website/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to website/CHANGELOG.md diff --git a/LICENSE b/website/LICENSE similarity index 100% rename from LICENSE rename to website/LICENSE diff --git a/README.md b/website/README.md similarity index 100% rename from README.md rename to website/README.md diff --git a/babel.config.js b/website/babel.config.js similarity index 100% rename from babel.config.js rename to website/babel.config.js diff --git a/blog/2023-02-04-blog.md b/website/blog/2023-02-04-blog.md similarity index 100% rename from blog/2023-02-04-blog.md rename to website/blog/2023-02-04-blog.md diff --git a/blog/2023-02-09-azure-cloud-shell-faq.md b/website/blog/2023-02-09-azure-cloud-shell-faq.md similarity index 100% rename from blog/2023-02-09-azure-cloud-shell-faq.md rename to website/blog/2023-02-09-azure-cloud-shell-faq.md diff --git a/blog/2023-06-04-openai-cli-with-typescript.md b/website/blog/2023-06-04-openai-cli-with-typescript.md similarity index 100% rename from blog/2023-06-04-openai-cli-with-typescript.md rename to website/blog/2023-06-04-openai-cli-with-typescript.md diff --git a/blog/2023-10-27-cloud-native-001.md b/website/blog/2023-10-27-cloud-native-001.md similarity index 100% rename from blog/2023-10-27-cloud-native-001.md rename to website/blog/2023-10-27-cloud-native-001.md diff --git a/blog/2023-11-03-cloud-native-002-developer-environment-setup.md b/website/blog/2023-11-03-cloud-native-002-developer-environment-setup.md similarity index 100% rename from blog/2023-11-03-cloud-native-002-developer-environment-setup.md rename to website/blog/2023-11-03-cloud-native-002-developer-environment-setup.md diff --git a/blog/2023-11-10-cloud-native-003-api.md b/website/blog/2023-11-10-cloud-native-003-api.md similarity index 100% rename from blog/2023-11-10-cloud-native-003-api.md rename to website/blog/2023-11-10-cloud-native-003-api.md diff --git a/blog/2023-11-21-cloud-native-004-devops.md b/website/blog/2023-11-21-cloud-native-004-devops.md similarity index 100% rename from blog/2023-11-21-cloud-native-004-devops.md rename to website/blog/2023-11-21-cloud-native-004-devops.md diff --git a/blog/2023-12-10-cloud-native-005-deploy-from-github-to-azure.md b/website/blog/2023-12-10-cloud-native-005-deploy-from-github-to-azure.md similarity index 100% rename from blog/2023-12-10-cloud-native-005-deploy-from-github-to-azure.md rename to website/blog/2023-12-10-cloud-native-005-deploy-from-github-to-azure.md diff --git a/blog/2023-12-28-cloud-native-006-client-todo.md b/website/blog/2023-12-28-cloud-native-006-client-todo.md similarity index 100% rename from blog/2023-12-28-cloud-native-006-client-todo.md rename to website/blog/2023-12-28-cloud-native-006-client-todo.md diff --git a/blog/2024-01-21-cloud-native-008-api-database.md b/website/blog/2024-01-21-cloud-native-008-api-database.md similarity index 100% rename from blog/2024-01-21-cloud-native-008-api-database.md rename to website/blog/2024-01-21-cloud-native-008-api-database.md diff --git a/blog/2024-04-06-remote-code.md b/website/blog/2024-04-06-remote-code.md similarity index 100% rename from blog/2024-04-06-remote-code.md rename to website/blog/2024-04-06-remote-code.md diff --git a/blog/2024-04-07-mono-repo-functions.md b/website/blog/2024-04-07-mono-repo-functions.md similarity index 100% rename from blog/2024-04-07-mono-repo-functions.md rename to website/blog/2024-04-07-mono-repo-functions.md diff --git a/blog/2025-12-30-github-account-clean.md b/website/blog/2025-12-30-github-account-clean.md similarity index 100% rename from blog/2025-12-30-github-account-clean.md rename to website/blog/2025-12-30-github-account-clean.md diff --git a/blog/media/2023-02-09/azure-cloud-shell-button.png b/website/blog/media/2023-02-09/azure-cloud-shell-button.png similarity index 100% rename from blog/media/2023-02-09/azure-cloud-shell-button.png rename to website/blog/media/2023-02-09/azure-cloud-shell-button.png diff --git a/blog/media/2023-11-21-cloud-native-004-devops/azure-portal-failed-deployment.png b/website/blog/media/2023-11-21-cloud-native-004-devops/azure-portal-failed-deployment.png similarity index 100% rename from blog/media/2023-11-21-cloud-native-004-devops/azure-portal-failed-deployment.png rename to website/blog/media/2023-11-21-cloud-native-004-devops/azure-portal-failed-deployment.png diff --git a/blog/media/2023-11-21-cloud-native-004-devops/azure-portal-log-container-fail.png b/website/blog/media/2023-11-21-cloud-native-004-devops/azure-portal-log-container-fail.png similarity index 100% rename from blog/media/2023-11-21-cloud-native-004-devops/azure-portal-log-container-fail.png rename to website/blog/media/2023-11-21-cloud-native-004-devops/azure-portal-log-container-fail.png diff --git a/blog/media/2023-11-21-cloud-native-004-devops/azure-portal-log-error-container-start-up.png b/website/blog/media/2023-11-21-cloud-native-004-devops/azure-portal-log-error-container-start-up.png similarity index 100% rename from blog/media/2023-11-21-cloud-native-004-devops/azure-portal-log-error-container-start-up.png rename to website/blog/media/2023-11-21-cloud-native-004-devops/azure-portal-log-error-container-start-up.png diff --git a/blog/media/2023-11-21-cloud-native-004-devops/azure-portal-revision-status-failure.png b/website/blog/media/2023-11-21-cloud-native-004-devops/azure-portal-revision-status-failure.png similarity index 100% rename from blog/media/2023-11-21-cloud-native-004-devops/azure-portal-revision-status-failure.png rename to website/blog/media/2023-11-21-cloud-native-004-devops/azure-portal-revision-status-failure.png diff --git a/blog/media/2023-11-21-cloud-native-004-devops/diagram-devops-actions.png b/website/blog/media/2023-11-21-cloud-native-004-devops/diagram-devops-actions.png similarity index 100% rename from blog/media/2023-11-21-cloud-native-004-devops/diagram-devops-actions.png rename to website/blog/media/2023-11-21-cloud-native-004-devops/diagram-devops-actions.png diff --git a/blog/media/2023-11-21-cloud-native-004-devops/time-savings.jpg b/website/blog/media/2023-11-21-cloud-native-004-devops/time-savings.jpg similarity index 100% rename from blog/media/2023-11-21-cloud-native-004-devops/time-savings.jpg rename to website/blog/media/2023-11-21-cloud-native-004-devops/time-savings.jpg diff --git a/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-curl-request.png b/website/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-curl-request.png similarity index 100% rename from blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-curl-request.png rename to website/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-curl-request.png diff --git a/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-next-steps.png b/website/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-next-steps.png similarity index 100% rename from blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-next-steps.png rename to website/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-next-steps.png diff --git a/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-teminal-azd-init.png b/website/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-teminal-azd-init.png similarity index 100% rename from blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-teminal-azd-init.png rename to website/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-teminal-azd-init.png diff --git a/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-terminal-azd-up.png b/website/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-terminal-azd-up.png similarity index 100% rename from blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-terminal-azd-up.png rename to website/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-terminal-azd-up.png diff --git a/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-terminal-docker-missing.png b/website/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-terminal-docker-missing.png similarity index 100% rename from blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-terminal-docker-missing.png rename to website/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-terminal-docker-missing.png diff --git a/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-terminal-playwright-results.png b/website/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-terminal-playwright-results.png similarity index 100% rename from blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-terminal-playwright-results.png rename to website/blog/media/2023-11-21-cloud-native-004-devops/visual-studio-code-terminal-playwright-results.png diff --git a/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/azure-dev-yml.png b/website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/azure-dev-yml.png similarity index 100% rename from blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/azure-dev-yml.png rename to website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/azure-dev-yml.png diff --git a/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/azure-portal-federated-credentials.png b/website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/azure-portal-federated-credentials.png similarity index 100% rename from blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/azure-portal-federated-credentials.png rename to website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/azure-portal-federated-credentials.png diff --git a/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/azure-portal-roles-and-administrators.png b/website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/azure-portal-roles-and-administrators.png similarity index 100% rename from blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/azure-portal-roles-and-administrators.png rename to website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/azure-portal-roles-and-administrators.png diff --git a/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/browser-api-todo-app-version-update.png b/website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/browser-api-todo-app-version-update.png similarity index 100% rename from blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/browser-api-todo-app-version-update.png rename to website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/browser-api-todo-app-version-update.png diff --git a/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/browser-azure-developer-cli-template-by-language-and-host.png b/website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/browser-azure-developer-cli-template-by-language-and-host.png similarity index 100% rename from blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/browser-azure-developer-cli-template-by-language-and-host.png rename to website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/browser-azure-developer-cli-template-by-language-and-host.png diff --git a/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-azd-deploy-steps-successful.png b/website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-azd-deploy-steps-successful.png similarity index 100% rename from blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-azd-deploy-steps-successful.png rename to website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-azd-deploy-steps-successful.png diff --git a/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-deploy-application-step.png b/website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-deploy-application-step.png similarity index 100% rename from blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-deploy-application-step.png rename to website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-deploy-application-step.png diff --git a/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-initial-deploy-action.png b/website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-initial-deploy-action.png similarity index 100% rename from blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-initial-deploy-action.png rename to website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-initial-deploy-action.png diff --git a/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-update-version-actions.png b/website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-update-version-actions.png similarity index 100% rename from blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-update-version-actions.png rename to website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-action-update-version-actions.png diff --git a/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-repo-settings-action-variables.png b/website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-repo-settings-action-variables.png similarity index 100% rename from blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-repo-settings-action-variables.png rename to website/blog/media/2023-12-10-cloud-native-005-deploy-from-source-control/github-repo-settings-action-variables.png diff --git a/blog/media/2023-12-28-cloud-native-006-client-todo/browser-todo-app-ui.png b/website/blog/media/2023-12-28-cloud-native-006-client-todo/browser-todo-app-ui.png similarity index 100% rename from blog/media/2023-12-28-cloud-native-006-client-todo/browser-todo-app-ui.png rename to website/blog/media/2023-12-28-cloud-native-006-client-todo/browser-todo-app-ui.png diff --git a/blog/media/2023-12-28-cloud-native-006-client-todo/visual-studio-code-terminal-vitest-result.png b/website/blog/media/2023-12-28-cloud-native-006-client-todo/visual-studio-code-terminal-vitest-result.png similarity index 100% rename from blog/media/2023-12-28-cloud-native-006-client-todo/visual-studio-code-terminal-vitest-result.png rename to website/blog/media/2023-12-28-cloud-native-006-client-todo/visual-studio-code-terminal-vitest-result.png diff --git a/blog/media/2025-12-30-github-account-clean/architecture.png b/website/blog/media/2025-12-30-github-account-clean/architecture.png similarity index 100% rename from blog/media/2025-12-30-github-account-clean/architecture.png rename to website/blog/media/2025-12-30-github-account-clean/architecture.png diff --git a/blog/mermaid/2023-11-21-devops.mmd b/website/blog/mermaid/2023-11-21-devops.mmd similarity index 100% rename from blog/mermaid/2023-11-21-devops.mmd rename to website/blog/mermaid/2023-11-21-devops.mmd diff --git a/docs/index.md b/website/docs/index.md similarity index 100% rename from docs/index.md rename to website/docs/index.md diff --git a/docs/presentations.md b/website/docs/presentations.md similarity index 100% rename from docs/presentations.md rename to website/docs/presentations.md diff --git a/docusaurus.config.js b/website/docusaurus.config.js similarity index 100% rename from docusaurus.config.js rename to website/docusaurus.config.js diff --git a/index.html b/website/index.html similarity index 100% rename from index.html rename to website/index.html diff --git a/package-lock.json b/website/package-lock.json similarity index 100% rename from package-lock.json rename to website/package-lock.json diff --git a/package.json b/website/package.json similarity index 100% rename from package.json rename to website/package.json diff --git a/sidebars.js b/website/sidebars.js similarity index 100% rename from sidebars.js rename to website/sidebars.js diff --git a/site.config.js b/website/site.config.js similarity index 100% rename from site.config.js rename to website/site.config.js diff --git a/src/components/HomepageFeatures.js b/website/src/components/HomepageFeatures.js similarity index 100% rename from src/components/HomepageFeatures.js rename to website/src/components/HomepageFeatures.js diff --git a/src/components/HomepageFeatures.module.css b/website/src/components/HomepageFeatures.module.css similarity index 100% rename from src/components/HomepageFeatures.module.css rename to website/src/components/HomepageFeatures.module.css diff --git a/src/css/custom.css b/website/src/css/custom.css similarity index 100% rename from src/css/custom.css rename to website/src/css/custom.css diff --git a/src/pages/index.module.css b/website/src/pages/index.module.css similarity index 100% rename from src/pages/index.module.css rename to website/src/pages/index.module.css diff --git a/src/pages/markdown-page.md b/website/src/pages/markdown-page.md similarity index 100% rename from src/pages/markdown-page.md rename to website/src/pages/markdown-page.md diff --git a/static/.nojekyll b/website/static/.nojekyll similarity index 100% rename from static/.nojekyll rename to website/static/.nojekyll diff --git a/static/favicon.ico b/website/static/favicon.ico similarity index 100% rename from static/favicon.ico rename to website/static/favicon.ico diff --git a/static/img/basic-site.png b/website/static/img/basic-site.png similarity index 100% rename from static/img/basic-site.png rename to website/static/img/basic-site.png diff --git a/static/img/diberry-gravitar.png b/website/static/img/diberry-gravitar.png similarity index 100% rename from static/img/diberry-gravitar.png rename to website/static/img/diberry-gravitar.png diff --git a/static/img/favicon2.ico b/website/static/img/favicon2.ico similarity index 100% rename from static/img/favicon2.ico rename to website/static/img/favicon2.ico