Skip to content

Commit

Permalink
test releaser
Browse files Browse the repository at this point in the history
  • Loading branch information
kindermax committed Jan 27, 2025
1 parent 60cae23 commit 7abddc0
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build
jobs:
test-releaser:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
# - name: Install Dependencies (macOS)
# if: runner.os == 'macOS'
# run: brew install bash
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: 1.23.x
- name: Checkout code
uses: actions/checkout@v2
- name: Show compliler env
run: |
env | grep CC
env | grep CXX
env | grep FLAGS
gcc --version || echo "No gcc"
clang --version || echo "No clang"
- name: Releaser build
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: v2.6.1
args: build --clean

0 comments on commit 7abddc0

Please sign in to comment.