From 51ce93a59bf382048778459e72751ac854de1789 Mon Sep 17 00:00:00 2001 From: randomusert Date: Thu, 14 May 2026 19:07:19 +0300 Subject: [PATCH 1/3] started gameplay for tincraft 2 --- docs/tincraft2/gameplay/Blocks/index.md | 2 ++ docs/tincraft2/gameplay/Blocks/tinore.md | 2 ++ docs/tincraft2/gameplay/Items/index.md | 2 ++ docs/tincraft2/gameplay/Items/tiningot.md | 2 ++ docs/tincraft2/gameplay/index.md | 13 +++++++++++++ mkdocs.yml | 18 +++++++++++++++--- 6 files changed, 36 insertions(+), 3 deletions(-) create mode 100644 docs/tincraft2/gameplay/Blocks/index.md create mode 100644 docs/tincraft2/gameplay/Blocks/tinore.md create mode 100644 docs/tincraft2/gameplay/Items/index.md create mode 100644 docs/tincraft2/gameplay/Items/tiningot.md create mode 100644 docs/tincraft2/gameplay/index.md diff --git a/docs/tincraft2/gameplay/Blocks/index.md b/docs/tincraft2/gameplay/Blocks/index.md new file mode 100644 index 0000000..5d517c5 --- /dev/null +++ b/docs/tincraft2/gameplay/Blocks/index.md @@ -0,0 +1,2 @@ +# Blocks +A list of blocks and usages \ No newline at end of file diff --git a/docs/tincraft2/gameplay/Blocks/tinore.md b/docs/tincraft2/gameplay/Blocks/tinore.md new file mode 100644 index 0000000..f526c92 --- /dev/null +++ b/docs/tincraft2/gameplay/Blocks/tinore.md @@ -0,0 +1,2 @@ +## tin ore +Tin ore can be found between y -64 and 64. It spawns quite rarely. Smelting it will give you Tin ingot \ No newline at end of file diff --git a/docs/tincraft2/gameplay/Items/index.md b/docs/tincraft2/gameplay/Items/index.md new file mode 100644 index 0000000..b55dbb6 --- /dev/null +++ b/docs/tincraft2/gameplay/Items/index.md @@ -0,0 +1,2 @@ +# Items +A list of items and usages \ No newline at end of file diff --git a/docs/tincraft2/gameplay/Items/tiningot.md b/docs/tincraft2/gameplay/Items/tiningot.md new file mode 100644 index 0000000..3a4fed8 --- /dev/null +++ b/docs/tincraft2/gameplay/Items/tiningot.md @@ -0,0 +1,2 @@ +## tin ingot +Tin ingot can be gotten from smelting tin \ No newline at end of file diff --git a/docs/tincraft2/gameplay/index.md b/docs/tincraft2/gameplay/index.md new file mode 100644 index 0000000..01089fc --- /dev/null +++ b/docs/tincraft2/gameplay/index.md @@ -0,0 +1,13 @@ +--- +hide: + - navigation + - toc +title: Tincraft 2 gameplay +--- + +# tincraft 2 gameplay +This document tells you about things in tincraft 2 as of latest public build (0.2 DEV4) + + + + diff --git a/mkdocs.yml b/mkdocs.yml index a99da20..456c74d 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -25,11 +25,23 @@ theme: - content.action.view -# Nav nav: - Home: index.md - - Tincore: tincore/index.md - - tincraft 2: tincraft2/index.md + - Tincore: + - Main: tincore/index.md + + - Tincraft 2: + - Overview: tincraft2/index.md + - Gameplay: + - Overview: tincraft2/gameplay/index.md + - Blocks: + - Overview: tincraft2/gameplay/Blocks/index.md + - Tin Ore: tincraft2/gameplay/Blocks/tinore.md + + - Items: + - Overview: tincraft2/gameplay/Items/index.md + - Tin Ingot: tincraft2/gameplay/Items/tiningot.md + # copyright copyright: Copyright (c) 2026 Randomusert. Licensed under the MIT License. \ No newline at end of file From 965ca208bbb1348ffcde7d7d1cb8ec789be81e9d Mon Sep 17 00:00:00 2001 From: randomusert Date: Thu, 14 May 2026 19:10:10 +0300 Subject: [PATCH 2/3] config workflow to run on PRs --- .github/workflows/deploy-docs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 77c1973..302b343 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -3,6 +3,8 @@ on: workflow_dispatch: push: branches: ["main"] + pull_request: + branches: ["main"] permissions: contents: write From 023c045ee0c79bca08af78a15bf87d10630bbba9 Mon Sep 17 00:00:00 2001 From: randomusert Date: Thu, 14 May 2026 19:16:26 +0300 Subject: [PATCH 3/3] hopefully working in PRs workflow --- .github/workflows/deploy-docs.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 302b343..91016b9 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -23,7 +23,6 @@ jobs: steps: - uses: actions/checkout@v4 with: - ref: '${{ github.ref_name }}' fetch-depth: 0 - uses: actions/setup-python@v4 with: