aboutsummaryrefslogtreecommitdiffhomepage
path: root/.gitea/workflows/release.yml
blob: 44ad40ef95591ca5510c9a8909349eb04ed2783f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: release

on:
  push:
    tags:
      - '*'

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4
        with:
          fetch-depth: 0
      - name: Set up go
        uses: https://github.com/actions/setup-go@v5
        with:
          go-version: '>=1.20.1'
      - name: Get dependencies
        run: >-
          sudo apt-get update &&
          sudo apt-get install -y
          gcc
          pkg-config
          libacl1-dev
        if: ${{ runner.os == 'Linux' }}
      - name: Build for Linux
        run: >-
          sh -c "go build -v -ldflags '-s -w -X main.Version=${{ github.ref_name }}' -o bin/fortify &&
          sha256sum --tag -b bin/fortify > bin/fortify.sha256"
      - name: Release
        id: use-go-action
        uses: https://gitea.com/actions/release-action@main
        with:
          files: |-
            bin/**
          api_key: '${{secrets.RELEASE_TOKEN}}'