crowdsec/.github/workflows/release_publish-package.yml

90 lines
2.4 KiB
YAML
Raw Normal View History

2020-05-15 09:41:18 +00:00
# .github/workflows/build-docker-image.yml
name: build
2020-05-15 09:41:18 +00:00
on:
2020-05-15 09:41:18 +00:00
release:
types:
- prereleased
2020-05-15 09:41:18 +00:00
jobs:
build:
2023-02-28 16:25:09 +00:00
strategy:
matrix:
go-version: ["1.20.1"]
2020-05-15 09:41:18 +00:00
name: Build and upload binary package
runs-on: ubuntu-latest
steps:
2023-02-28 16:25:09 +00:00
- name: "Set up Go ${{ matrix.go-version }}"
uses: actions/setup-go@v3
with:
2023-02-28 16:25:09 +00:00
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
fetch-depth: 0
2023-02-28 16:25:09 +00:00
submodules: false
- name: Cache Go modules
uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
key: ${{ runner.os }}-${{ matrix.go-version }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-${{ matrix.go-version }}-go-
- name: Build the binaries
run: make release
- name: Upload to release
uses: JasonEtco/upload-to-release@master
with:
args: crowdsec-release.tgz application/x-gzip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2023-02-28 16:25:09 +00:00
build_static:
2023-02-28 16:25:09 +00:00
strategy:
matrix:
go-version: ["1.20.1"]
name: Build and upload binary package
runs-on: ubuntu-latest
steps:
2023-02-28 16:25:09 +00:00
- name: "Set up Go ${{ matrix.go-version }}"
uses: actions/setup-go@v3
with:
2023-02-28 16:25:09 +00:00
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
fetch-depth: 0
2023-02-28 16:25:09 +00:00
submodules: false
- name: Cache Go modules
uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
key: ${{ runner.os }}-${{ matrix.go-version }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-${{ matrix.go-version }}-go-
- name: Build the binaries
run: |
make release BUILD_STATIC=yes
mv crowdsec-release.tgz crowdsec-release-static.tgz
- name: Upload to release
uses: JasonEtco/upload-to-release@master
with:
args: crowdsec-release-static.tgz application/x-gzip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}