Compare commits

...

3 Commits

Author SHA1 Message Date
ddf83eb33b Add missing newline to created env files (#133) 2021-03-04 20:35:31 +11:00
f562099a43 Add renovate.json (#124)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-11-11 15:36:58 +11:00
c49ef66cd3 Fix release name 2020-11-11 15:35:55 +11:00
3 changed files with 7 additions and 2 deletions

View File

@ -24,7 +24,7 @@ jobs:
uses: svenstaro/upload-release-action@v2 uses: svenstaro/upload-release-action@v2
with: with:
repo_token: ${{ secrets.GITHUB_TOKEN }} repo_token: ${{ secrets.GITHUB_TOKEN }}
name: Release ${{ github.ref }} release_name: Release ${{ github.ref }}
tag: ${{ github.ref }} tag: ${{ github.ref }}
file: dist/* file: dist/*
file_glob: true file_glob: true

View File

@ -157,7 +157,7 @@ func Write(envMap map[string]string, filename string) error {
return err return err
} }
defer file.Close() defer file.Close()
_, err = file.WriteString(content) _, err = file.WriteString(content + "\n")
if err != nil { if err != nil {
return err return err
} }

5
renovate.json Normal file
View File

@ -0,0 +1,5 @@
{
"extends": [
"config:base"
]
}