diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 88b1565..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Deploy pages -on: - push: - branches: - - main -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: '20' - - name: Install dependencies - run: npm install - - name: Install slidev - run: npm install -g @marp-team/marp-cli - - name: Build - run: marp slides.md -o index.html - - name: Deploy pages - uses: crazy-max/ghaction-github-pages@v3 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test_building.yml b/.github/workflows/test_building.yml deleted file mode 100644 index 14623ef..0000000 --- a/.github/workflows/test_building.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: test building - -on: - pull_request: - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: '14' - - name: Install dependencies - run: npm install - - name: Install slidev - run: npm i -g @slidev/cli - - name: Build - run: slidev build --base neutronics-workshop-slides