diff options
author | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-22 18:24:03 -0400 |
---|---|---|
committer | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-22 18:24:03 -0400 |
commit | 6184aba245dce6f9f68e7147f86b943caa508eba (patch) | |
tree | d9dacb760c7fe280d1a9eae0607b158673fc6459 | |
parent | ee7a8e24da1dfc959d78236a63ee65acc4be45e4 (diff) | |
download | donetick-6184aba245dce6f9f68e7147f86b943caa508eba.tar.gz donetick-6184aba245dce6f9f68e7147f86b943caa508eba.tar.bz2 donetick-6184aba245dce6f9f68e7147f86b943caa508eba.zip |
chore: Add Go Release workflow for automated releases
-rw-r--r-- | .github/workflows/go-release.yml | 33 |
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 |