From f07738cc35ea8f5c057e33168d7399045aa3230e Mon Sep 17 00:00:00 2001 From: iwilltry42 Date: Wed, 16 Feb 2022 19:15:52 +0100 Subject: [PATCH] add gh action for release --- .github/workflows/release.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 00000000..adde81f2 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,27 @@ +name: Release + +on: workflow_dispatch + +jobs: + release: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - name: Setup Go environment + uses: actions/setup-go@v2 + with: + go-version: "1.17.x" + - name: Setup Docker + uses: docker-practice/actions-setup-docker@master + with: + docker_version: "20.10" + - name: Setup CI Tools + run: make ci-setup + - name: lint + run: make lint + - name: test + run: make test + - name: e2e + run: make e2e + - name: build + run: make build-cross