From 7b2a900872e16a481581ef21c15be6e0b509883d Mon Sep 17 00:00:00 2001 From: duykhanh471 <151365241+duy103zxc@users.noreply.github.com> Date: Sun, 4 Aug 2024 13:50:05 +0700 Subject: [PATCH] Create ci.yml --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2a73111 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: ci +on: + push: + branches: + - main + +permissions: + contents: write + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.x + - run: pip install mkdocs-material mkdocs-open-in-new-tab + - run: mkdocs gh-deploy --force