From bf37e6dd6d546c692c016649c31b1582f7836729 Mon Sep 17 00:00:00 2001 From: duykhanh471 <151365241+duy103zxc@users.noreply.github.com> Date: Sun, 4 Aug 2024 13:29:10 +0700 Subject: [PATCH] Create ci.yml --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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..8076826 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ + +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