Skip to content

Commit a78a0a7

Browse files
authored
Merge pull request #55 from IFRCGo/fix/release-pipeline
Fix release pipeline
2 parents 06c7d73 + 51967af commit a78a0a7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
- name: Wait for npm package to be available
9595
run: |
9696
PACKAGE_NAME="@ifrc-go/icons"
97-
PACKAGE_VERSION=$(cat package.json | grep version | grep -oP "(\d+\.)?(\d+\.)?(\*|\d+)")
97+
PACKAGE_VERSION=$(cat package.json | grep '@ifrc-go/icons' | grep -oP "(\d+\.)?(\d+\.)?(\*|\d+)")
9898
9999
# Loop until the package is available in the registry
100100
while [[ -z $(npm show "$PACKAGE_NAME@$PACKAGE_VERSION" version) ]]; do

gh-pages/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"lint": "next lint"
1111
},
1212
"dependencies": {
13-
"@ifrc-go/icons": "^1.3.2",
13+
"@ifrc-go/icons": "^1.3.3",
1414
"@types/node": "20.2.5",
1515
"@types/react": "18.2.7",
1616
"@types/react-dom": "18.2.4",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ifrc-go/icons",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "IFRC-GO icons library for React.",
55
"keywords": [
66
"ifrc-go",

0 commit comments

Comments
 (0)