diff --git a/.github/workflows/stride-website-github.yml b/.github/workflows/stride-website-github.yml index 93715c0..d0cb51d 100644 --- a/.github/workflows/stride-website-github.yml +++ b/.github/workflows/stride-website-github.yml @@ -11,13 +11,13 @@ jobs: strategy: matrix: - node-version: [18.x] + node-version: [20.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} diff --git a/.github/workflows/stride-website-release-azure.yml b/.github/workflows/stride-website-release-azure.yml index ec9faac..8aa40ac 100644 --- a/.github/workflows/stride-website-release-azure.yml +++ b/.github/workflows/stride-website-release-azure.yml @@ -21,12 +21,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Node.js version - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: '18.x' + node-version: '20.x' - name: npm install, build, and test run: | @@ -35,7 +35,7 @@ jobs: npm run test --if-present - name: Upload artifact for deployment job - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: node-app path: ./_site @@ -49,7 +49,7 @@ jobs: steps: - name: Download artifact from build job - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: node-app diff --git a/.github/workflows/stride-website-staging-azure.yml b/.github/workflows/stride-website-staging-azure.yml index 75695e0..3eafdee 100644 --- a/.github/workflows/stride-website-staging-azure.yml +++ b/.github/workflows/stride-website-staging-azure.yml @@ -20,12 +20,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Node.js version - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: '18.x' + node-version: '20.x' - name: npm install, build, and test run: | @@ -34,7 +34,7 @@ jobs: npm run test --if-present - name: Upload artifact for deployment job - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: node-app path: ./_site @@ -48,7 +48,7 @@ jobs: steps: - name: Download artifact from build job - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: node-app @@ -59,4 +59,4 @@ jobs: app-name: 'stride-website' slot-name: 'staging' publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_987D5D58A3DB4FC585848F34A99F7E0D }} - package: . + package: . \ No newline at end of file diff --git a/.github/workflows/stride-website-wiki.yml b/.github/workflows/stride-website-wiki.yml index 22cb2e4..8a5c902 100644 --- a/.github/workflows/stride-website-wiki.yml +++ b/.github/workflows/stride-website-wiki.yml @@ -1,10 +1,10 @@ name: Publish to GitHub Wiki on: - push: - branches: - - master - paths: - - wiki/** + # push: + # branches: + # - master + # paths: + # - wiki/** workflow_dispatch: jobs: @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Upload Wiki pages uses: docker://decathlon/wiki-page-creator-action:2.0.1 env: diff --git a/README.md b/README.md index 2891eec..21333be 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Welcome to the Stride website repository. This repository contains all the sourc ## šŸš€ Getting Started -All the information you need to start with Stride Website development is available in the šŸ“š [Stride Website Wiki](https://github.com/stride3d/stride-website/wiki). +All the information you need to start with Stride Website development is available in the šŸ“š [Stride Docs - Contributing](https://doc.stride3d.net/latest/en/contributors/website/index.html). ## šŸ¤ Contributing @@ -26,7 +26,7 @@ The `master` branch is the default branch for pull requests and most other devel Releases are based on a stable `master` branch. Use of [Conventional Commit](https://www.conventionalcommits.org/en/v1.0.0/) is encouraged. -Stride Website is _not_ released under a regular cadence; new updates arrive when maintainers fix issues or see enough changes that warrant a new releases. Sometimes we use prereleases to get feedbacks from the community. +Stride Website is _not_ released under a regular cadence; new updates arrive when maintainers fix issues or see enough changes that warrant a new releases. Sometimes we use pre-releases to get feedbacks from the community. ### Staging @@ -36,16 +36,16 @@ The staging website is available at https://stride-website-staging.azurewebsites ## šŸ—ŗļø Roadmap -Our Wiki [Roadmap](https://github.com/stride3d/stride-website/wiki/Roadmap) communicates upcoming changes to the Stride website. +Our [Roadmap](https://doc.stride3d.net/latest/en/contributors/website/roadmap.html) communicates upcoming changes to the Stride website. ## šŸ“– Stride Documentation Landscape -The Stride documentation landscape is organized across different repositories and their respective wikis to cater to both users and contributors. Here's how it's structured: +The Stride documentation landscape is organized across different locations. Here's how it's structured: 1. [Stride Website](https://www.stride3d.net/) - Stride's official site showcasing its free, open-source 2D and 3D game engine, alongside blog posts - - [Stride Website Wiki](https://github.com/stride3d/stride-website/wiki) - This wiki serves as a comprehensive guide for those looking to contribute to or develop the Stride Website + - [Stride Website - Contributing](https://doc.stride3d.net/latest/en/contributors/website/index.html) - This serves as a comprehensive guide for those looking to contribute to or develop the Stride Website 1. [Stride Docs](https://doc.stride3d.net/) - Here you'll find Stride's documentation, including manuals, tutorials, and API references - - [Stride Docs Wiki](https://github.com/stride3d/stride-docs/wiki) - This wiki is a comprehensive guide for individuals interested in contributing to or developing the Stride Docs + - [Stride Docs - Contributing](https://doc.stride3d.net/latest/en/contributors/documentation/index.html) - This is a comprehensive guide for individuals interested in contributing to or developing the Stride Docs 1. [Stride Wiki](https://github.com/stride3d/stride/wiki) - A thorough guide for those who wish to contribute to or develop Stride game engine ## šŸŒ .NET Foundation diff --git a/_data/site.json b/_data/site.json index 88fc6f2..0eb8615 100644 --- a/_data/site.json +++ b/_data/site.json @@ -1,5 +1,5 @@ { - "version": "2.0.0.24", + "version": "2.0.0.25", "engine": "Eleventy 2.0", "title": "Stride Game Engine", "description": "C# Stride Game Engine is a powerful and versatile game development engine that is based on the C# programming language", @@ -96,6 +96,12 @@ "github": "manio143", "linkedin": "", "twitter": "MDziubiak" + }, + "parham": { + "name": "Parham Gholami", + "github": "parhamgholami", + "linkedin": "", + "twitter": "parhamgholami" } } } diff --git a/_includes/blog-aside.html b/_includes/blog-aside.html index 3993e12..acfc120 100644 --- a/_includes/blog-aside.html +++ b/_includes/blog-aside.html @@ -45,6 +45,13 @@
+

FOSS Game Engines

+ +

Other