mirror of
https://github.com/crowdsecurity/cs-firewall-bouncer.git
synced 2024-08-19 01:18:49 +03:00
42 lines
818 B
YAML
42 lines
818 B
YAML
name: build-binary-package
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- prereleased
|
|
|
|
permissions:
|
|
# Use write for: hub release edit
|
|
contents: write
|
|
|
|
env:
|
|
PROGRAM_NAME: crowdsec-firewall-bouncer
|
|
|
|
jobs:
|
|
build:
|
|
name: Build and upload all platforms
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: 1.20.5
|
|
|
|
- name: Build all versions
|
|
run: |
|
|
make vendor platform-all
|
|
|
|
- name: Upload to release
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
tag_name="${GITHUB_REF##*/}"
|
|
hub release edit $(find . -name "$PROGRAM_NAME*" -maxdepth 1 -printf "-a %p ") -a vendor.tgz -m "" "$tag_name"
|