From ad1f4e1c102c04cadfa08912caa9661585fd2d61 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Mon, 10 May 2021 18:58:31 -0400 Subject: [PATCH] ci: force publish correct npm versions to manually get back to a good state --- .github/workflows/release.yml | 15 +++++++++------ .gitignore | 1 + 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a9a268a24..6b5acc1bd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,9 +35,12 @@ jobs: run: npm run test - name: Coverage Report uses: codecov/codecov-action@v1 - - name: Preview Changed Packages - run: npm run changed - - name: Publish Changed Packages - run: npm run publish - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Publish correct @edx/frontend-enterprise-utils version to NPM + working-directory: ./packages/utils + run: npm publish dist --access public + - name: Publish correct @edx/frontend-enterprise-catalog-search version to NPM + working-directory: ./packages/catalog-search + run: npm publish dist --access public + - name: Publish correct @edx/frontend-enterprise-logistration version to NPM + working-directory: ./packages/logistration + run: npm publish dist --access public diff --git a/.gitignore b/.gitignore index 1c80d9d76..662c9ea62 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ node_modules lerna-debug.log .DS_Store +release_original.yml