We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b3047d commit e72d29eCopy full SHA for e72d29e
.github/workflows/release.yaml
@@ -0,0 +1,16 @@
1
+name: Release
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+
7
+jobs:
8
+ release:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout
12
+ uses: actions/checkout@master
13
+ - name: Release
14
+ uses: codfish/[email protected]
15
+ env:
16
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.releaserc
@@ -0,0 +1,7 @@
+branches:
+ - name: "main"
+plugins:
+ - "@semantic-release/commit-analyzer"
+ - "@semantic-release/release-notes-generator"
+ - "@semantic-release/github"
README.md
@@ -65,8 +65,8 @@ func main() {
65
66
fmt.Printf("Finished with response %v\n", apiResponse)
67
}
68
-
69
```
70
## Call database keeping a constant delay
71
```go
72
package main
0 commit comments