From 2314816a02e8d6a2de64865689f1c32ca5e03cc9 Mon Sep 17 00:00:00 2001 From: Alexander Petree Date: Sun, 29 Sep 2024 05:09:00 -0700 Subject: [PATCH] Delete .github/actions/build-dist/action.yml --- .github/actions/build-dist/action.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/actions/build-dist/action.yml diff --git a/.github/actions/build-dist/action.yml b/.github/actions/build-dist/action.yml deleted file mode 100644 index 6baf11f8..00000000 --- a/.github/actions/build-dist/action.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: 'Build and upload distribution' -# Builds the action distribution an uploads as an artifact for later download -runs: - using: "composite" - steps: - - name: Build distribution - shell: bash - run: | - npm install - npm run build - - name: Upload distribution - uses: actions/upload-artifact@v3 - with: - name: dist - path: dist/ -