2323 - uses : actions/checkout@v4
2424
2525 - name : Upload to DeployGate
26- uses : DeployGate/deploygate-upload-github-action@v1.0.1
26+ uses : DeployGate/deploygate-upload-github-action@v1.1.0
2727 with :
2828 api_token : ${{ secrets.DEPLOYGATE_API_TOKEN }}
2929 owner_name : ${{ secrets.DEPLOYGATE_OWNER_NAME }}
@@ -49,7 +49,7 @@ When using this action, we recommend using the full version number (e.g., `@1.0.
4949
5050Example :
5151` ` ` yaml
52- - uses: DeployGate/[email protected] .1 52+ - uses: DeployGate/deploygate-upload-github-action@v1. 1.0
5353` ` `
5454
5555# # Input parameters
@@ -64,6 +64,7 @@ Example:
6464| `distribution_name` | ❌ | Distribution page's name |
6565| `release_note` | ❌ | Message displayed during distribution page app updates |
6666| `disable_notify` | ❌ | (iOS only) Disable Push notification emails |
67+ | `enable_pr_comment` | ❌ | Enable/Disable PR comment creation (Default : true) |
6768
6869# # Output
6970
@@ -92,19 +93,21 @@ This action uses [Dependabot](https://docs.github.com/ja/code-security/dependabo
9293# ## Basic Usage
9394` ` ` yaml
9495- name: Upload to DeployGate
95- uses: DeployGate/deploygate-upload-github-action@v1.0.1
96+ uses: DeployGate/deploygate-upload-github-action@v1.1.0
9697 with:
9798 api_token: ${{ secrets.DEPLOYGATE_API_TOKEN }}
9899 owner_name: ${{ secrets.DEPLOYGATE_OWNER_NAME }}
99100 file_path: /path/to/app_file
100- message: "message example"
101+ message: "PR #${{ github.event.pull_request.number }} - ${{ github.event.pull_request.title }}"
102+ distribution_name: "PR #${github.event.pull_request.number}"
103+ enable_pr_comment: true
101104` ` `
102105
103106# ## Using Action Outputs
104107` ` ` yaml
105108- name: Upload to DeployGate
106109 id: deploygate
107- uses: DeployGate/deploygate-upload-github-action@v1.0.1
110+ uses: DeployGate/deploygate-upload-github-action@v1.1.0
108111 with:
109112 api_token: ${{ secrets.DEPLOYGATE_API_TOKEN }}
110113 owner_name: ${{ secrets.DEPLOYGATE_OWNER_NAME }}
@@ -150,7 +153,7 @@ jobs:
150153
151154 - name: Upload to DeployGate
152155 id: deploygate
153- uses: DeployGate/deploygate-upload-github-action@v1.0.1
156+ uses: DeployGate/deploygate-upload-github-action@v1.1.0
154157 with:
155158 api_token: ${{ secrets.DEPLOYGATE_API_TOKEN }}
156159 owner_name: ${{ secrets.DEPLOYGATE_OWNER_NAME }}
@@ -185,7 +188,7 @@ jobs:
185188
186189 - name: Upload AAB to DeployGate
187190 id: deploygate
188- uses: DeployGate/deploygate-upload-github-action@v1.0.1
191+ uses: DeployGate/deploygate-upload-github-action@v1.1.0
189192 with:
190193 api_token: ${{ secrets.DEPLOYGATE_API_TOKEN }}
191194 owner_name: ${{ secrets.DEPLOYGATE_OWNER_NAME }}
@@ -223,7 +226,7 @@ jobs:
223226
224227 - name: Upload APK to DeployGate
225228 id: deploygate
226- uses: DeployGate/deploygate-upload-github-action@v1.0.1
229+ uses: DeployGate/deploygate-upload-github-action@v1.1.0
227230 with:
228231 api_token: ${{ secrets.DEPLOYGATE_API_TOKEN }}
229232 owner_name: ${{ secrets.DEPLOYGATE_OWNER_NAME }}
0 commit comments