Skip to content

Commit

Permalink
fix workflow file not found
Browse files Browse the repository at this point in the history
  • Loading branch information
jimyag committed Apr 17, 2024
1 parent 1a7e525 commit e8a733b
Showing 1 changed file with 1 addition and 27 deletions.
28 changes: 1 addition & 27 deletions .github/workflows/realease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,41 +10,16 @@ jobs:
strategy:
matrix:
include:
# macOS targets
- goarch: amd64
goos: darwin
- goarch: arm64
goos: darwin
# Linux targets
- goarch: "386"
goos: linux
- goarch: amd64
goos: linux
- goarch: arm
goos: linux
- goarch: arm64
goos: linux
- goarch: mips
goos: linux
- goarch: mipsle
goos: linux
- goarch: mips64
goos: linux
- goarch: mips64le
goos: linux
- goarch: loong64
goos: linux
- goarch: riscv64
goos: linux
# Windows targets
- goarch: "386"
goos: windows
- goarch: amd64
goos: windows
- goarch: arm
goos: windows
- goarch: arm64
goos: windows
steps:
- name: Show environment
run: export
Expand All @@ -54,7 +29,6 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
build_command: "make"
build_flags: "release"
build_command: "make release"
binary_name: "parquet-tools"
extra_files: parquet-tools

0 comments on commit e8a733b

Please sign in to comment.