Skip to content

Commit 6965b16

Browse files
Fix Pushiko version substituion in FCM docs (#89)
2 parents 22cd789 + 2f235c8 commit 6965b16

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/publish-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ jobs:
4646
git fetch origin gh-pages:gh-pages
4747
sed -i 's/<year>/${{ env.YEAR }}/g' docs/*.md
4848
sed -i 's/<year>/${{ env.YEAR }}/g' mkdocs.yml
49-
sed -i 's/<pushikoVersion>/${{ env.VERSION }}/g' docs/*.md
49+
sed -i 's/{pushikoVersion}/${{ env.VERSION }}/g' docs/*.md
5050
mkdocs gh-deploy -m 'Automatic mkdocs deployment.'

docs/getting_started_apns.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ First add Pushiko as a dependency.
1111
}
1212

1313
dependencies {
14-
implementation("com.bloomberg.pushiko:pushiko-apns:<pushikoVersion>")
14+
implementation("com.bloomberg.pushiko:pushiko-apns:{pushikoVersion}")
1515
}
1616
```
1717

@@ -22,7 +22,7 @@ First add Pushiko as a dependency.
2222
}
2323

2424
dependencies {
25-
implementation 'com.bloomberg.pushiko:pushiko-apns:<pushikoVersion>'
25+
implementation 'com.bloomberg.pushiko:pushiko-apns:{pushikoVersion}'
2626
}
2727
```
2828

0 commit comments

Comments
 (0)