aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Mo Tarbin <mhed.t91@gmail.com>2024-07-22 18:27:04 -0400
committerLibravatar Mo Tarbin <mhed.t91@gmail.com>2024-07-22 18:27:04 -0400
commit1c415745a8bde532c3f668f7833019120ca89292 (patch)
treed9dacb760c7fe280d1a9eae0607b158673fc6459
parent3402ccdddd8ff61b16223b764d993c124164044a (diff)
parent6184aba245dce6f9f68e7147f86b943caa508eba (diff)
downloaddonetick-1c415745a8bde532c3f668f7833019120ca89292.tar.gz
donetick-1c415745a8bde532c3f668f7833019120ca89292.tar.bz2
donetick-1c415745a8bde532c3f668f7833019120ca89292.zip
Merge branch 'dev'
-rw-r--r--.github/workflows/go-release.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/go-release.yml b/.github/workflows/go-release.yml
new file mode 100644
index 0000000..9ff7474
--- /dev/null
+++ b/.github/workflows/go-release.yml
@@ -0,0 +1,33 @@
+name: Go Release
+
+on:
+ push:
+ tags:
+ - 'v*'
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout Code
+ uses: actions/checkout@v4
+
+ - name: Set up Go
+ uses: actions/setup-go@v5
+ with:
+ go-version: 1.22
+ check-latest: true
+ cache: true
+
+ - name: Run GoReleaser
+ uses: goreleaser/goreleaser-action@v6
+ with:
+ # either 'goreleaser' (default) or 'goreleaser-pro'
+ distribution: goreleaser
+ # 'latest', 'nightly', or a semver
+ version: latest
+ args: release --clean --skip=validate
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ # Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
+ # GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
+ \ No newline at end of file