From d828e3ea30fb517d373bbd73d5d5650ac6a6b312 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malte=20J=C3=BCrgens?= Date: Tue, 3 Nov 2020 09:37:53 +0100 Subject: [PATCH] remove gh actions --- .github/workflows/deploy.yml | 27 --------------------------- .github/workflows/test.yml | 20 -------------------- 2 files changed, 47 deletions(-) delete mode 100644 .github/workflows/deploy.yml delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 01fcec4..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: deploy - -on: - push: - branches: [master] - -jobs: - build-and-deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Setup Node.js environment - uses: actions/setup-node@v2.1.2 - - - name: Install dependencies - run: npm i - - - name: Build - run: npx parcel build src/index.html - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./dist - cname: archiv.hertzschlag.eu diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index d8fa07c..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: test - -on: - pull_request: - branches: [ master ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Setup Node.js environment - uses: actions/setup-node@v2.1.2 - - - name: Install dependencies - run: npm i - - - name: Build - run: npx parcel build src/index.html