From 0f802e6b654a1b4d1c330800c63879bf6cfcf77c Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Tue, 8 Sep 2026 13:20:00 -0600 Subject: [PATCH] fix: remove styleguide symlink from examples repo --- .github/workflows/release.yml | 4 ++-- justfile | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0f95f69f2..b23269a8d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,12 +17,12 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Publish Stable Package if: ${{ github.event_name == 'workflow_dispatch' || !github.event.release.prerelease }} - run: EASYPOST_TEST_API_KEY=123 EASYPOST_PROD_API_KEY=123 just install install-styleguide publish + run: EASYPOST_TEST_API_KEY=123 EASYPOST_PROD_API_KEY=123 just install publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_API_KEY }} - name: Publish Release Candidate Package if: ${{ github.event_name == 'release' && github.event.release.prerelease }} - run: EASYPOST_TEST_API_KEY=123 EASYPOST_PROD_API_KEY=123 just install install-styleguide publish-next + run: EASYPOST_TEST_API_KEY=123 EASYPOST_PROD_API_KEY=123 just install publish-next env: NODE_AUTH_TOKEN: ${{ secrets.NPM_API_KEY }} - name: Upload assets to release diff --git a/justfile b/justfile index 31b09b366..6f75cf3a4 100644 --- a/justfile +++ b/justfile @@ -27,10 +27,6 @@ init-examples-submodule: git submodule init git submodule update -# Install the styleguide (Unix only) -install-styleguide: init-examples-submodule - sh examples/symlink_directory_files.sh examples/style_guides/node . - # Install project dependencies (Unix only) install: init-examples-submodule npm install