diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 244fbaf..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: CI - -on: - push: - branches: - - "*" - pull_request: - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout sources - uses: actions/checkout@v2 - - - uses: actions/setup-node@v2 - with: - node-version: '14' - - - uses: egordm/gha-yarn-node-cache@v1 - - - run: yarn install - - run: npm run build - - - name: Archive - uses: actions/upload-artifact@v2 - with: - name: notes - path: public diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index a67b404..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Deploy - -on: - push: - branches: - - master - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - name: Checkout sources - uses: actions/checkout@v2 - - - uses: actions/setup-node@v2 - with: - node-version: '14' - - - uses: egordm/gha-yarn-node-cache@v1 - - - run: yarn install - - run: npm run build - - - name: Archive - uses: actions/upload-artifact@v2 - with: - name: notes - path: public - - - name: rclone - uses: wei/rclone@master - with: - args: sync public/ pages:notes.theorangeone.net/ - env: - RCLONE_CONFIG_PAGES_TYPE: webdav - RCLONE_CONFIG_PAGES_URL: https://pages.theorangeone.net - RCLONE_CONFIG_PAGES_USER: github - RCLONE_CONFIG_PAGES_PASS: ${{ secrets.RCLONE_WEBDAV_PASSWORD }}