From 129ea26fc0b70fbdcdf697dda07fd3e92a444680 Mon Sep 17 00:00:00 2001 From: Simon Winther Date: Tue, 25 Jul 2023 03:28:26 +0200 Subject: [PATCH] Delete build.yml --- .github/workflows/build.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 88736c0..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Build on Release -on: - release: - types: [published] -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - name: Use Node.js - uses: actions/setup-node@v2 - with: - node-version: "18.16.0" - - name: Install dependencies - run: npm ci - - name: Run build - run: npm run build - - name: Archive production artifacts - uses: actions/upload-artifact@v2 - with: - name: dist - path: dist