diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml new file mode 100644 index 00000000..92c7cfc1 --- /dev/null +++ b/.github/workflows/deploy.yaml @@ -0,0 +1,32 @@ +name: Build and Deploy +on: + push: + branches: + - staging + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: 16 + - name: Configure Git + run: | + git config --global user.name "GitHub Actions" + git config --global user.email "actions@github.com" + - name: Install dependencies + working-directory: ./docs + run: yarn install + - name: Build + working-directory: ./docs + run: yarn build + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: docs/src/.vuepress/dist + publish_branch: gh-pages diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..18fdc5ca --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "Lua.workspace.library": [ + "/home/stephen/.config/Code/User/globalStorage/sumneko.lua/addonManager/addons/ao/module/library" + ], + "Lua.workspace.checkThirdParty": false +} \ No newline at end of file