Skip to content

Commit

Permalink
chore: configure semantic release
Browse files Browse the repository at this point in the history
  • Loading branch information
jdvr committed Oct 1, 2022
1 parent 1b3047d commit e72d29e
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Release
on:
push:
branches:
- main

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Release
uses: codfish/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7 changes: 7 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
branches:
- name: "main"

plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- "@semantic-release/github"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ func main() {

fmt.Printf("Finished with response %v\n", apiResponse)
}

```

## Call database keeping a constant delay
```go
package main
Expand Down

0 comments on commit e72d29e

Please sign in to comment.