This commit is contained in:
parent
bc41b10c69
commit
a6d1ca1f65
34
.gitea/workflows/release.yaml
Normal file
34
.gitea/workflows/release.yaml
Normal 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 }}
|
4
Makefile
4
Makefile
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user