From be812d7a4242dacb847631928decc339adf4c0f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1ximo=20Cuadros?= Date: Tue, 6 Apr 2021 16:21:40 +0200 Subject: [PATCH] ci: fix github action for release and documentation --- .github/workflows/gh-pages.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index b62e127..059969a 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -16,9 +16,9 @@ jobs: path: ${{env.WORKING_PATH}} - name: Install Go - uses: actions/setup-go@v2-beta + uses: actions/setup-go@v2 with: - go-version: 1.14.x + go-version: 1.16.x - name: Setup Hugo uses: peaceiris/actions-hugo@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b6872bb..fbbeee6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: - name: Set GO_LDFLAGS run: | - echo ::set-env name=GO_LDFLAGS::$(make goldflags) + echo "GO_LDFLAGS=$(make goldflags)" >> $GITHUB_ENV - name: Release binaries uses: mcuadros/go-release-action@master