docker-multi-arch-builder/.gitea/workflows/release.yaml
RouxAntoine 86430e85d2
Some checks failed
Main / build (push) Failing after 34s
fix missing dependencies with prod tag
2023-07-12 01:13:57 +02:00

41 lines
1.2 KiB
YAML

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"
if: env.RELEASE_VERSION != 'master'
- run: make build VERSION=$RELEASE_VERSION GOOS=linux GOARCH=amd64 GO_BUILD_FLAGS="-tags dev"
if: env.RELEASE_VERSION == 'master'
- 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"
method: 'PUT'
username: github.actor
password: env.GITHUB_TOKEN
file: "${{ github.workspace }}/bin/docker-multi-arch-builder-linux-amd64"
- name: Show Response
run: |
echo ${{ steps.pushArtifact.outputs.response }}
echo ${{ steps.pushArtifact.outputs.headers }}