Skip to content

Commit 8fe099a

Browse files
committed
refactor: rename package to firebase-distribution and update action references in documentation
1 parent 539f63d commit 8fe099a

3 files changed

Lines changed: 18 additions & 18 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ access.
4141

4242
```yaml
4343
- name: Distribute to Firebase App Distribution
44-
uses: logickoder/firebase-distribution-with-wildcards@main
44+
uses: logickoder/firebase-distribution@main
4545
with:
4646
serviceCredentialsFileContent: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}
4747
file: app/build/outputs/apk/release/app-release.apk
@@ -56,7 +56,7 @@ Perfect for distributing APK splits or multiple variants. See the
5656
5757
```yaml
5858
- name: Distribute APK Splits
59-
uses: logickoder/firebase-distribution-with-wildcards@main
59+
uses: logickoder/firebase-distribution@main
6060
with:
6161
serviceCredentialsFileContent: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}
6262
file: 'app/build/outputs/apk/release/*.apk'
@@ -84,7 +84,7 @@ jobs:
8484
run: ./gradlew assembleRelease
8585

8686
- name: Distribute to Firebase
87-
uses: logickoder/firebase-distribution-with-wildcards@main
87+
uses: logickoder/firebase-distribution@main
8888
with:
8989
serviceCredentialsFileContent: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}
9090
file: 'app/build/outputs/apk/**/*.apk'
@@ -103,7 +103,7 @@ jobs:
103103
104104
```yaml
105105
- name: Distribute with Release Notes File
106-
uses: logickoder/firebase-distribution-with-wildcards@main
106+
uses: logickoder/firebase-distribution@main
107107
with:
108108
serviceCredentialsFileContent: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}
109109
file: app/build/outputs/apk/release/app-release.apk
@@ -116,7 +116,7 @@ jobs:
116116
117117
```yaml
118118
- name: Distribute with Service Account File
119-
uses: logickoder/firebase-distribution-with-wildcards@main
119+
uses: logickoder/firebase-distribution@main
120120
with:
121121
serviceCredentialsFile: ./firebase-service-account.json
122122
file: '**/*.apk'
@@ -154,7 +154,7 @@ provided
154154
```yaml
155155
- name: Distribute to Firebase
156156
id: firebase
157-
uses: logickoder/firebase-distribution-with-wildcards@main
157+
uses: logickoder/firebase-distribution@main
158158
with:
159159
serviceCredentialsFileContent: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}
160160
file: app/build/outputs/apk/release/app-release.apk
@@ -227,7 +227,7 @@ Actions):
227227
Enable debug mode for detailed logging:
228228

229229
```yaml
230-
- uses: logickoder/firebase-distribution-with-wildcards@main
230+
- uses: logickoder/firebase-distribution@main
231231
with:
232232
serviceCredentialsFileContent: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}
233233
file: app.apk
@@ -243,7 +243,7 @@ for details.
243243

244244
## Related Actions
245245

246-
- [Firebase App Distribution Official](https://github.com/wzieba/firebase-distribution-with-wildcards-Github-Action)
246+
- [Firebase App Distribution Official](https://github.com/wzieba/Firebase-Distribution-Github-Action)
247247
- [Android Build Actions](https://github.com/marketplace?type=actions&query=android+build)
248248

249249
## Contributing

WILDCARD_GUIDE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Matches all APKs except those in debug folders
132132

133133
```yaml
134134
- name: Distribute All Release Builds
135-
uses: logickoder/firebase-distribution-with-wildcards@main
135+
uses: logickoder/firebase-distribution@main
136136
with:
137137
serviceCredentialsFileContent: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}
138138
file: '**/release/*.apk'
@@ -144,7 +144,7 @@ Matches all APKs except those in debug folders
144144

145145
```yaml
146146
- name: Distribute ARM Builds Only
147-
uses: logickoder/firebase-distribution-with-wildcards@main
147+
uses: logickoder/firebase-distribution@main
148148
with:
149149
serviceCredentialsFileContent: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}
150150
file: 'app/build/outputs/apk/release/app-arm*-release.apk'
@@ -156,7 +156,7 @@ Matches all APKs except those in debug folders
156156

157157
```yaml
158158
- name: Distribute Staging and Production
159-
uses: logickoder/firebase-distribution-with-wildcards@main
159+
uses: logickoder/firebase-distribution@main
160160
with:
161161
serviceCredentialsFileContent: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}
162162
file: 'app/build/outputs/apk/{staging,production}/release/*.apk'
@@ -168,7 +168,7 @@ Matches all APKs except those in debug folders
168168

169169
```yaml
170170
- name: Distribute Non-Debug Builds
171-
uses: logickoder/firebase-distribution-with-wildcards@main
171+
uses: logickoder/firebase-distribution@main
172172
with:
173173
serviceCredentialsFileContent: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}
174174
file: 'app/build/outputs/apk/!(debug)/**/*.apk'
@@ -219,7 +219,7 @@ Verify files exist before distribution:
219219
ls -R app/build/outputs/apk/
220220
221221
- name: Distribute
222-
uses: logickoder/firebase-distribution-with-wildcards@main
222+
uses: logickoder/firebase-distribution@main
223223
with:
224224
file: 'app/build/outputs/apk/**/*.apk'
225225
# ... other inputs

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"name": "firebase-distribution-with-wildcards",
2+
"name": "firebase-distribution",
33
"description": "Distribute app to Firebase App Distribution with wildcard file support",
44
"version": "1.0.0",
55
"author": "Jeffery Orazulike",
66
"private": true,
7-
"homepage": "https://github.com/actions/firebase-distribution-with-wildcards",
7+
"homepage": "https://github.com/marketplace/actions/firebase-distribution-with-wildcards",
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/actions/firebase-distribution-with-wildcards.git"
10+
"url": "git+https://github.com/marketplace/actions/firebase-distribution-with-wildcards.git"
1111
},
1212
"bugs": {
13-
"url": "https://github.com/actions/firebase-distribution-with-wildcards/issues"
13+
"url": "https://github.com/marketplace/actions/firebase-distribution-with-wildcards/issues"
1414
},
1515
"keywords": [
1616
"actions",
@@ -88,4 +88,4 @@
8888
"ts-jest": "^29.4.4",
8989
"typescript": "^5.9.3"
9090
}
91-
}
91+
}

0 commit comments

Comments
 (0)