From 1cf9a568f7209af478fe4614b9697a25cbd47d4a Mon Sep 17 00:00:00 2001 From: holzi1005 Date: Wed, 28 May 2025 13:39:49 +0200 Subject: [PATCH] Delete .github/workflows/task-artifact.yml --- .github/workflows/task-artifact.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/task-artifact.yml diff --git a/.github/workflows/task-artifact.yml b/.github/workflows/task-artifact.yml deleted file mode 100644 index 03bb7bf..0000000 --- a/.github/workflows/task-artifact.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Build Artifacts - -on: workflow_call - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Install NPM Packages - uses: actions/setup-node@v3 - with: - node-version: ${{ vars.NODE_VERSION }} - - - name: Install Node modules - run: npm install - - - - uses: montudor/action-zip@v1 - with: - args: zip -qq -r artifact_${{github.run_number}}.zip . - - - name: Upload articats - uses: actions/upload-artifact@v3 - with: - name: artifact_${{github.run_number}} - path: artifact_${{github.run_number}}.zip