From a45ef00fe9b30c3847cce11810ce7d3d35ef17c6 Mon Sep 17 00:00:00 2001 From: RouxAntoine Date: Thu, 13 Jul 2023 21:03:33 +0200 Subject: [PATCH] fix missing dependencies with prod tag --- .gitea/workflows/release.yaml | 24 +++++++++++++++++++++--- go.mod | 3 ++- go.sum | 2 ++ 3 files changed, 25 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 95aabb6..193d222 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -19,14 +19,32 @@ jobs: - run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - run: make build VERSION=$RELEASE_VERSION GOOS=linux GOARCH=amd64 GO_BUILD_FLAGS="-tags prod" + if: env.RELEASE_VERSION != 'master' - - name: Request Postman Echo POST and persist response + - run: make build VERSION=$RELEASE_VERSION GOOS=linux GOARCH=amd64 GO_BUILD_FLAGS="-tags dev" + if: env.RELEASE_VERSION == 'master' + +# - run: | +# echo "$GITHUB_TOKEN" >> secret.txt +# echo "${{ github.actor }}" >> secret.txt +# git config user.name github-actions +# git config user.email github-actions@github.com +# git add . +# git commit -m "generated" +# git push + + - name: PUT binary as repository package id: pushArtifact uses: fjogeleit/http-request-action@v1 with: - url: "https://antoine-roux.tk/projects/api/packages/go/docker-multi-arch-builder/generic/docker-multi-arch-builder/$RELEASE_VERSION/docker-multi-arch-builder" + url: "https://antoine-roux.tk/projects/api/packages/go/generic/docker-multi-arch-builder/${{ env.RELEASE_VERSION }}/docker-multi-arch-builder" method: 'PUT' - file: "${{ github.workspace }}/bin/docker-multi-arch-builder-darwin-amd64" + username: ${{ github.actor }} + password: ${{ secrets.PACKAGE_PUSH_TOKEN }} +# password: ${{ env.GITHUB_TOKEN }} +# customHeaders: '{"Authorization": "token ${{ env.GITHUB_TOKEN }}"' + timeout: 20000 + file: "${{ github.workspace }}/bin/docker-multi-arch-builder-linux-amd64" - name: Show Response run: | diff --git a/go.mod b/go.mod index f8f3a8f..fdf10e7 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module antoine-roux.tk/docker-multi-arch-builder -go 1.17 +go 1.20 require ( github.com/sirupsen/logrus v1.8.1 @@ -8,6 +8,7 @@ require ( ) require ( + github.com/hashicorp/go-version v1.6.0 // indirect github.com/inconshreveable/mousetrap v1.0.0 // indirect github.com/spf13/pflag v1.0.5 // indirect golang.org/x/sys v0.0.0-20211205182925-97ca703d548d // indirect diff --git a/go.sum b/go.sum index b7a4644..fc62488 100644 --- a/go.sum +++ b/go.sum @@ -282,6 +282,8 @@ github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdv github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/go-uuid v1.0.1 h1:fv1ep09latC32wFoVwnqcnKJGnMSdBanPczbHAYm1BE= github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= +github.com/hashicorp/go-version v1.6.0 h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mOkIeek= +github.com/hashicorp/go-version v1.6.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.4 h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc=