Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 0 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down