From f8f7ac0b9f906f09d0995b9e97dd98962cfaeef3 Mon Sep 17 00:00:00 2001 From: Robbie Wagner Date: Mon, 7 Oct 2024 13:49:03 -0400 Subject: [PATCH] Delete push-dist.yml --- .github/workflows/push-dist.yml | 35 --------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/push-dist.yml diff --git a/.github/workflows/push-dist.yml b/.github/workflows/push-dist.yml deleted file mode 100644 index 97c5f00..0000000 --- a/.github/workflows/push-dist.yml +++ /dev/null @@ -1,35 +0,0 @@ -# Because this library needs to be built, -# we can't easily point package.json files at the git repo for easy cross-repo testing. -# -# This workflow brings back that capability by placing the compiled assets on a "dist" branch -# (configurable via the "branch" option below) -name: Push dist - -on: - push: - branches: - - main - - master - -jobs: - push-dist: - name: Push dist - runs-on: ubuntu-latest - timeout-minutes: 10 - - steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v3 - with: - version: 8 - - uses: actions/setup-node@v4 - with: - node-version: 18 - cache: pnpm - - name: Install Dependencies - run: pnpm install --frozen-lockfile - - uses: kategengler/put-built-npm-package-contents-on-branch@v2.0.0 - with: - branch: dist - token: ${{ secrets.GITHUB_TOKEN }} - working-directory: 'ember-highcharts'