From 24ba208fd318762a2e08613ee6c6908243ad726f Mon Sep 17 00:00:00 2001 From: Mehdi Baaboura Date: Fri, 21 Oct 2022 15:38:45 +0200 Subject: [PATCH] Fixed pipeline dependency --- .github/workflows/release.yaml | 8 +++----- package.json | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 29cdffe..75e0285 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -5,15 +5,13 @@ on: types: [created, edited] jobs: - publish-npm: - needs: build + publish: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: node-version: 16 - registry-url: https://registry.npmjs.org/ - run: npm install - run: npm run build - uses: JS-DevTools/npm-publish@v1 diff --git a/package.json b/package.json index 5026356..c0acf8d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "country-to-aws-region", "officialName": "country-to-aws-region", - "version": "1.0.2", + "version": "1.0.3", "description": "JS library that helps get the closest AWS region from a country code", "summary": "JS library that helps get the closest AWS region from a country code", "main": "lib/index.js",