From 6b87f373122b6c6e75911b2029a334861622e13b Mon Sep 17 00:00:00 2001 From: DerTyp7 Date: Tue, 26 Sep 2023 11:48:49 +0200 Subject: [PATCH] remove old gh actions file --- .github/workflows/deploy-gh-pages.yml | 43 --------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/deploy-gh-pages.yml diff --git a/.github/workflows/deploy-gh-pages.yml b/.github/workflows/deploy-gh-pages.yml deleted file mode 100644 index 8a17923..0000000 --- a/.github/workflows/deploy-gh-pages.yml +++ /dev/null @@ -1,43 +0,0 @@ - -name: Angular GitHub Pages CI -on: - push: - branches: - - main - -jobs: - ci: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [18.x] - - steps: - - uses: actions/checkout@v2 - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - - name: Cache node modules - id: cache-nodemodules - uses: actions/cache@v2 - env: - cache-name: cache-node-modules - with: - # caching node_modules - path: node_modules - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-build-${{ env.cache-name }}- - ${{ runner.os }}-build- - ${{ runner.os }}- - - name: Install Dependencies - if: steps.cache-nodemodules.outputs.cache-hit != 'true' - run: | - npm ci - - name: Build - run: | - npm run build