diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-10-17 00:17:40 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-10-17 00:17:40 +0900 |
| commit | 354c23dd28d9996dd2c553243cfbe3358b35ea80 (patch) | |
| tree | 16cf67373de62cf5ac01ef09ba238a9838ca8031 /.gitea | |
| parent | c21168a74181903535c63f49c5a6d3bd2052c883 (diff) | |
workflows: add lines between steps
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to '.gitea')
| -rw-r--r-- | .gitea/workflows/release.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 44ad40ef..e6f72a21 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -13,10 +13,12 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Set up go + + - name: Setup go uses: https://github.com/actions/setup-go@v5 with: - go-version: '>=1.20.1' + go-version: '>=1.23.0' + - name: Get dependencies run: >- sudo apt-get update && @@ -25,10 +27,12 @@ jobs: 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 |
