6.2.3 #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Publish | |
on: | |
release: | |
types: [released] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x, 16.x, 18.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: 'Get Previous tag' | |
id: previoustag | |
uses: "WyriHaximus/github-action-get-previous-tag@v1" | |
- name: Set version | |
run: | | |
sed -i -e "s/0.0.0/${{ steps.previoustag.outputs.tag }}/" package.json | |
sed -i -e "s/0.0.0/${{ steps.previoustag.outputs.tag }}/" package-lock.json | |
cat package.json | |
- run: npm ci | |
- run: npm test | |
- run: npm pack | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: package | |
path: ./gettyimages-api-${{ steps.previoustag.outputs.tag }}.tgz | |
publish: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- name: 'Get Previous tag' | |
id: previoustag | |
uses: "WyriHaximus/github-action-get-previous-tag@v1" | |
- uses: actions/download-artifact@v1 | |
with: | |
name: package | |
path: . | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
registry-url: 'https://registry.npmjs.org' | |
- run: npm publish ./gettyimages-api-${{ steps.previoustag.outputs.tag }}.tgz | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTOMATION_KEY}} |