We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 446d59f commit 138420bCopy full SHA for 138420b
.github/workflows/release.yml
@@ -0,0 +1,21 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - main
5
+
6
+permissions:
7
+ contents: write
8
+ pull-requests: write
9
10
+name: Release SDK
11
12
+jobs:
13
+ release-please:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: google-github-actions/release-please-action@v3
17
+ with:
18
+ release-type: php
19
+ package-name: open-pix/php-sdk
20
+ extra-files: |
21
+ src/Client.php
src/Client.php
@@ -17,7 +17,9 @@
*/
class Client
{
+ // {x-release-please-start-version}
public const SDK_VERSION = "1.0.0";
22
+ // {x-release-please-end}
23
24
public const BASE_URI = "https://api.openpix.com.br";
25
0 commit comments