diff --git a/.changeset/README.md b/.changeset/README.md deleted file mode 100644 index e5b6d8d6a67..00000000000 --- a/.changeset/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# Changesets - -Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works -with multi-package repos, or single-package repos to help you version and publish your code. You can -find the full documentation for it [in our repository](https://github.com/changesets/changesets) - -We have a quick list of common questions to get you started engaging with this project in -[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) diff --git a/.changeset/config.json b/.changeset/config.json deleted file mode 100644 index 444d0040797..00000000000 --- a/.changeset/config.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json", - "changelog": "@changesets/cli/changelog", - "commit": false, - "linked": [], - "access": "public", - "baseBranch": "master", - "updateInternalDependencies": "patch", - "ignore": [], - "snapshot": { - "useCalculatedVersion": true, - "prereleaseTemplate": "{tag}-{commit}" - } -} diff --git a/.github/workflows/celo-monorepo.yml b/.github/workflows/celo-monorepo.yml index 9dbee240790..f89d82aa4d0 100644 --- a/.github/workflows/celo-monorepo.yml +++ b/.github/workflows/celo-monorepo.yml @@ -8,12 +8,10 @@ on: push: branches: - master - - changeset-release/master pull_request: branches: - master - 'release/**' - - 'prerelease/**' concurrency: group: celo-monorepo-${{ github.ref }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml deleted file mode 100644 index f35eca07970..00000000000 --- a/.github/workflows/release.yaml +++ /dev/null @@ -1,54 +0,0 @@ -name: Release Packages - -on: - push: - branches: - - main - - master - - 'prerelease/*' - -concurrency: ${{ github.workflow }}-${{ github.ref }} - -jobs: - release: - name: Prepare or Publish - runs-on: ['self-hosted', 'org', 'npm-publish'] - permissions: - contents: write - id-token: write - pull-requests: write - repository-projects: write - steps: - - name: Checkout Repo - uses: actions/checkout@v3 - - - name: Akeyless Get Secrets - id: get_auth_token - uses: - docker://us-west1-docker.pkg.dev/devopsre/akeyless-public/akeyless-action:latest - with: - api-url: https://api.gateway.akeyless.celo-networks-dev.org - access-id: p-kf9vjzruht6l - static-secrets: '{"/static-secrets/NPM/npm-publish-token":"NPM_TOKEN"}' - - name: Setup Node.js 18.x - uses: actions/setup-node@v3 - with: - node-version: 18.x - - name: 'Setup yarn' - shell: bash - run: | - npm install --global yarn - source ~/.bashrc - - name: Install Dependencies - shell: bash - run: yarn - - name: Create Release Pull Request or Publish to npm - id: changesets - uses: changesets/action@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ env.NPM_TOKEN }} - with: - # This expects you to have a script called release which does a build for your packages and calls changeset publish - publish: yarn release - version: yarn version-and-reinstall \ No newline at end of file diff --git a/README.md b/README.md index 32dc372f8ae..a685a446cfb 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,6 @@ The repository has the following packages (sub projects): - [celotool](packages/celotool) - scripts for deploying and managing testnets - [dev-utils](packages/dev-utils) - a utils package for use as a dev dependency -- - [helm-charts](packages/helm-charts) - (DEPRECATED) templatized deployments of entire environments to Kubernetes clusters. Check [celo-org/charts](https://github.com/celo-org/charts) instead. - [protocol](packages/protocol) - identity, stability and other smart contracts for the Celo protocol ([docs](https://docs.celo.org/protocol)) diff --git a/package.json b/package.json index 9169277e251..fadefe545e9 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,6 @@ "build": "yarn run lerna run build", "clean": "yarn run lerna run clean", "docs": "yarn run lerna run docs", - "cs": "yarn changeset", "check-licenses": "yarn licenses list --prod | grep '\\(─ GPL\\|─ (GPL-[1-9]\\.[0-9]\\+ OR GPL-[1-9]\\.[0-9]\\+)\\)' && echo 'Found GPL license(s). Use 'yarn licenses list --prod' to look up the offending package' || echo 'No GPL licenses found'", "report-coverage": "yarn run lerna run test-coverage", "test:watch": "node node_modules/jest/bin/jest.js --watch",