Skip to content

Commit 554fcab

Browse files
committed
[Chore] Generate & update sample project
1 parent 18d6cf0 commit 554fcab

File tree

4 files changed

+39
-7
lines changed

4 files changed

+39
-7
lines changed

sample/.github/workflows/android_deploy_production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
id: changelog
6060
uses: mikepenz/release-changelog-builder-action@v4
6161
with:
62-
configuration: ".github/workflows/changelog-config.json"
62+
configuration: ".github/workflows/configs/changelog-config.json"
6363
# Listing PRs from the last tag to the HEAD commit
6464
toTag: ${{ steps.head.outputs.sha }}
6565
token: ${{ secrets.GITHUB_TOKEN }}

sample/.github/workflows/android_deploy_staging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ jobs:
5858
id: changelog
5959
uses: mikepenz/release-changelog-builder-action@v4
6060
with:
61-
configuration: ".github/workflows/changelog-config.json"
61+
configuration: ".github/workflows/configs/changelog-config.json"
6262
# Listing PRs from the last tag to the HEAD commit
63-
toTag: $
64-
token: $
63+
toTag: ${{ steps.head.outputs.sha }}
64+
token: ${{ secrets.GITHUB_TOKEN }}
6565

6666
- name: Deploy Android Staging to Firebase
6767
uses: wzieba/Firebase-Distribution-Github-Action@v1.5.0
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"categories": [
3+
{
4+
"title": "## ✨ Features",
5+
"labels": [
6+
"type : feature"
7+
]
8+
},
9+
{
10+
"title": "## 🐛 Bug fixes",
11+
"labels": [
12+
"type : bug"
13+
]
14+
},
15+
{
16+
"title": "## 🧹 Chores",
17+
"labels": [
18+
"type : chore"
19+
]
20+
},
21+
{
22+
"title": "## Others",
23+
"exclude_labels": [
24+
"type : feature",
25+
"type : bug",
26+
"type : chore",
27+
"type : release"
28+
]
29+
}
30+
],
31+
"max_pull_requests": 200
32+
}

sample/.github/workflows/ios_deploy_staging_to_firebase.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ jobs:
6161
id: changelog
6262
uses: mikepenz/release-changelog-builder-action@v4
6363
with:
64-
configuration: ".github/workflows/changelog-config.json"
64+
configuration: ".github/workflows/configs/changelog-config.json"
6565
# Listing PRs from the last tag to the HEAD commit
66-
toTag: $
67-
token: $
66+
toTag: ${{ steps.head.outputs.sha }}
67+
token: ${{ secrets.GITHUB_TOKEN }}
6868

6969
- name: Run code generator
7070
run: flutter packages pub run build_runner build --delete-conflicting-outputs

0 commit comments

Comments
 (0)