diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 61b907fc..00000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: release - -on: - push: - branches: - - master - -jobs: - release: - runs-on: ubuntu-latest - if: github.repository == 'reaviz/reagraph' - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - - name: Use Node.js 18.x - uses: actions/setup-node@v1 - with: - version: 18.x - - - name: Install deps and build (with cache) - uses: bahmutov/npm-install@v1 - - - name: Build Prod - run: npm run build - - - name: Build Storybook - run: npm run build-storybook - - # - name: Publish Chromatic - # run: yarn chromatic - - - name: Copy Domain - run: npm run copy - - - name: Publish Storybook to GH Pages - if: success() - uses: crazy-max/ghaction-github-pages@v3 - with: - target_branch: gh-pages - build_dir: storybook-static - jekyll: false - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/CNAME b/CNAME deleted file mode 100644 index 24989d3e..00000000 --- a/CNAME +++ /dev/null @@ -1 +0,0 @@ -reagraph.dev diff --git a/package.json b/package.json index 1402c6f5..ba01eb24 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,6 @@ "lint:fix": "eslint --ext js,ts,tsx --fix src", "start": "storybook dev -p 9009", "build-storybook": "storybook build", - "copy": "cp CNAME storybook-static/", "prepare": "husky install", "chromatic": "npx chromatic --project-token=a7098a56897c --auto-accept-changes" },