From ff2bcc6ca099095f519bf1d9ccde2c089812ae4c Mon Sep 17 00:00:00 2001 From: Jean-Marc MEESSEN Date: Sat, 18 Jul 2020 21:57:28 +0200 Subject: [PATCH] Place the version update at an other place in the CI action --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d6737d..dd247ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,13 +15,14 @@ jobs: name: Build & Test steps: - uses: actions/checkout@v2 + - name: Update version + run: ./update-version.sh - uses: actions/setup-go@v2 with: go-version: '^1.14.0' - run: go mod download - name: Build & Test run: | - ./update-version.sh go build -v . go test ./... - name: Run GoReleaser