mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
Publish NPM packages through CI (#3311)
* chore: update CI to publish npm packages during a release * chore: test on all OSs prior to publishing npm packages and running a release * auth with npm before publish
This commit is contained in:
parent
5525e6c87f
commit
1271f5a925
43
.github/workflows/release-core.yml
vendored
43
.github/workflows/release-core.yml
vendored
@ -14,7 +14,45 @@ env:
|
|||||||
NPM_CONFIG_RUNTIME: electron
|
NPM_CONFIG_RUNTIME: electron
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: true
|
||||||
|
matrix:
|
||||||
|
os: [ macos-latest, windows-latest, ubuntu-latest ]
|
||||||
|
steps:
|
||||||
|
- name: Checkout branch
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
- name: Read Node version from .nvmrc
|
||||||
|
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
|
||||||
|
id: nvm
|
||||||
|
- uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: ${{ steps.nvm.outputs.NVMRC }}
|
||||||
|
- name: Bootstrap packages
|
||||||
|
run: npm run bootstrap
|
||||||
|
- name: Run tests
|
||||||
|
run: npm test
|
||||||
|
npm:
|
||||||
|
needs: [ test ]
|
||||||
|
name: npm
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Read Node version from .nvmrc
|
||||||
|
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
|
||||||
|
id: nvm
|
||||||
|
- uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: ${{ steps.nvm.outputs.NVMRC }}
|
||||||
|
- run: npm run bootstrap
|
||||||
|
- run: |
|
||||||
|
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
|
||||||
|
npm run publish
|
||||||
|
env:
|
||||||
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN}}
|
||||||
Windows:
|
Windows:
|
||||||
|
needs: [ npm ]
|
||||||
name: Windows
|
name: Windows
|
||||||
runs-on: windows-2016
|
runs-on: windows-2016
|
||||||
steps:
|
steps:
|
||||||
@ -26,12 +64,12 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: ${{ steps.nvm.outputs.NVMRC }}
|
node-version: ${{ steps.nvm.outputs.NVMRC }}
|
||||||
- run: npm run bootstrap
|
- run: npm run bootstrap
|
||||||
- run: npm run test:pre-release
|
|
||||||
- run: npm run app-release
|
- run: npm run app-release
|
||||||
env:
|
env:
|
||||||
CSC_LINK: ${{ secrets.CORE_WINDOWS_CSC_LINK }}
|
CSC_LINK: ${{ secrets.CORE_WINDOWS_CSC_LINK }}
|
||||||
CSC_KEY_PASSWORD: ${{ secrets.CORE_WINDOWS_CSC_KEY_PASSWORD }}
|
CSC_KEY_PASSWORD: ${{ secrets.CORE_WINDOWS_CSC_KEY_PASSWORD }}
|
||||||
Mac:
|
Mac:
|
||||||
|
needs: [ npm ]
|
||||||
name: Mac
|
name: Mac
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
steps:
|
steps:
|
||||||
@ -43,7 +81,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: ${{ steps.nvm.outputs.NVMRC }}
|
node-version: ${{ steps.nvm.outputs.NVMRC }}
|
||||||
- run: npm run bootstrap
|
- run: npm run bootstrap
|
||||||
- run: npm run test:pre-release
|
|
||||||
- run: npm run app-release
|
- run: npm run app-release
|
||||||
env:
|
env:
|
||||||
APPLE_ID: ${{ secrets.DESIGNER_APPLE_ID }}
|
APPLE_ID: ${{ secrets.DESIGNER_APPLE_ID }}
|
||||||
@ -51,6 +88,7 @@ jobs:
|
|||||||
CSC_LINK: ${{ secrets.DESIGNER_MAC_CSC_LINK }}
|
CSC_LINK: ${{ secrets.DESIGNER_MAC_CSC_LINK }}
|
||||||
CSC_KEY_PASSWORD: ${{ secrets.DESIGNER_MAC_CSC_KEY_PASSWORD }}
|
CSC_KEY_PASSWORD: ${{ secrets.DESIGNER_MAC_CSC_KEY_PASSWORD }}
|
||||||
Linux:
|
Linux:
|
||||||
|
needs: [ npm ]
|
||||||
name: Linux
|
name: Linux
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@ -65,7 +103,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: ${{ steps.nvm.outputs.NVMRC }}
|
node-version: ${{ steps.nvm.outputs.NVMRC }}
|
||||||
- run: npm run bootstrap
|
- run: npm run bootstrap
|
||||||
- run: npm run test:pre-release
|
|
||||||
- run: npm run app-release
|
- run: npm run app-release
|
||||||
env:
|
env:
|
||||||
BUILD_TARGETS: AppImage,deb,tar.gz,rpm,snap
|
BUILD_TARGETS: AppImage,deb,tar.gz,rpm,snap
|
||||||
|
Loading…
Reference in New Issue
Block a user