diff --git a/Xceed-Words-Tutorials/.github/workflows/deploy.yml b/Xceed-Words-Tutorials/.github/workflows/deploy.yml deleted file mode 100644 index 00d04bc..0000000 --- a/Xceed-Words-Tutorials/.github/workflows/deploy.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Deploy Docusaurus site to GitHub Pages - -on: - push: - branches: - - main # Change this to your default branch if it's not 'main' - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Set up Node.js - uses: actions/setup-node@v2 - with: - node-version: '18' # Use the Node.js version you're using - - - name: Install dependencies - run: npm install - - - name: Build site - run: npm run build - - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./build