3 Commits

Author SHA1 Message Date
a400cdf5ad update README.
Some checks failed
Release / Bump Homebrew formula (push) Has been cancelled
2025-11-22 01:44:41 -08:00
c8a43fb328 typo in release 2025-11-22 01:41:14 -08:00
3ea7c31cba update workflow 2025-11-22 01:39:45 -08:00
3 changed files with 4 additions and 25 deletions

View File

@@ -10,29 +10,6 @@ permissions:
contents: write contents: write
jobs: jobs:
goreleaser:
name: GoReleaser
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_CPAT }}
homebrew: homebrew:
name: Bump Homebrew formula name: Bump Homebrew formula
# Skip this job in case of git pushes to prerelease tags # Skip this job in case of git pushes to prerelease tags
@@ -49,7 +26,7 @@ jobs:
- uses: mislav/bump-homebrew-formula-action@v3 - uses: mislav/bump-homebrew-formula-action@v3
with: with:
formula-name: ke formula-name: ke
formula-path: Formula/kw.rb formula-path: Formula/ke.rb
homebrew-tap: kisom/homebrew-tap homebrew-tap: kisom/homebrew-tap
base-branch: master base-branch: master
commit-message: | commit-message: |

View File

@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15)
project(ke C) # Specify C language explicitly project(ke C) # Specify C language explicitly
set(CMAKE_C_STANDARD 99) set(CMAKE_C_STANDARD 99)
set(KE_VERSION "1.0.3") set(KE_VERSION "1.0.4")
set(CMAKE_C_FLAGS "-Wall -Wextra -pedantic -Wshadow -Werror -std=c99 -g") set(CMAKE_C_FLAGS "-Wall -Wextra -pedantic -Wshadow -Werror -std=c99 -g")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_DEFAULT_SOURCE -D_XOPEN_SOURCE") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_DEFAULT_SOURCE -D_XOPEN_SOURCE")

View File

@@ -6,4 +6,6 @@ used fairly often.
See the man page for more info. See the man page for more info.
It should be available via homebrew, even.
Released under an ISC license. Released under an ISC license.