Merge pull request #948 from go-kivik/deps #174
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: create-release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
create-release: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.21.1" | |
- name: Determine tag name | |
run: | | |
go run ./script/version.go >> $GITHUB_ENV | |
- name: Create Release | |
if: ${{ env.TAG != '' }} | |
uses: ncipollo/[email protected] | |
with: | |
tag: ${{ env.TAG }} | |
commit: master | |
skipIfReleaseExists: true | |
prerelease: ${{ env.PRERELEASE }} | |
generateReleaseNotes: true |