Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
go-version: '1.21'

- name: Build for Multiple Platforms
run: |
Expand All @@ -38,7 +38,7 @@ jobs:
if [ $OS = "windows" ]; then
output_name="$output_name.exe"
fi
GOOS=$OS GOARCH=$ARCH go build -o "$output_name" .
GOOS=$OS GOARCH=$ARCH go build -o "$output_name" ./cmd/cpp2py
done

- name: Generate Next Version
Expand Down
Loading