feature: add binary push on release action
Main / build (push) Failing after 22s Details

This commit is contained in:
RouxAntoine 2023-07-12 00:45:04 +02:00
parent bc41b10c69
commit a6d1ca1f65
Signed by: antoine
GPG Key ID: 098FB66FC0475E70
2 changed files with 37 additions and 1 deletions

View File

@ -0,0 +1,34 @@
name: Main
on:
push:
branches:
- master
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: RouxAntoine/checkout@v3.5.4
- uses: actions/setup-go@v4
with:
go-version: '1.20.4'
- run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- run: make build VERSION=$RELEASE_VERSION GOOS=linux GOARCH=amd64 GO_BUILD_FLAGS="-tags prod"
- name: Request Postman Echo POST and persist response
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"
method: 'PUT'
file: "${{ github.workspace }}/bin/docker-multi-arch-builder-darwin-amd64"
- name: Show Response
run: |
echo ${{ steps.pushArtifact.outputs.response }}
echo ${{ steps.pushArtifact.outputs.headers }}

View File

@ -4,7 +4,9 @@ GOARCH=amd64
# GOARCH=arm
GOOS=darwin
# GOOS=linux
LDFLAGS=-w -s -X go/weather/internal/version.Version=$$(git rev-list -1 HEAD)
VERSION=$$(git rev-list -1 HEAD)
LDFLAGS=-w -s -X go/weather/internal/version.Version=$(VERSION)
GO_BUILD_FLAGS=-tags dev
CGO_ENABLED=0