mirror of https://github.com/dtm-labs/dtm.git
csharpjavadistributed-transactionsdtmgogolangmicroservicenodejsphpdatabasesagaseatatcctransactiontransactionsxapythondistributed
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
546 B
26 lines
546 B
name: Release
|
|
on:
|
|
create:
|
|
tags:
|
|
- v*
|
|
|
|
jobs:
|
|
release:
|
|
name: Release on GitHub
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Validates GO releaser config
|
|
uses: docker://goreleaser/goreleaser:latest
|
|
with:
|
|
args: check
|
|
|
|
- name: Create release on GitHub
|
|
uses: docker://goreleaser/goreleaser:latest
|
|
with:
|
|
args: release
|
|
workdir: ./cmd
|
|
env:
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
|
|