Skip to content

Commit 3624de4

Browse files
committed
chore: Fix build and release process
1 parent 5f54ebd commit 3624de4

File tree

3 files changed

+26
-67
lines changed

3 files changed

+26
-67
lines changed

.cds/workflows/build.yaml

Lines changed: 0 additions & 61 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build and test
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
go-version: [ '1.24.x', '1.25.x' ]
12+
13+
steps:
14+
- uses: actions/checkout@v5
15+
- name: Setup Go
16+
uses: actions/setup-go@v5
17+
with:
18+
go-version: ${{ matrix.go-version }}
19+
- name: Install dependencies
20+
run: go get ./...
21+
- name: Build binary
22+
run: make
23+
- name: Build WASM binary
24+
run: make wasm
25+
- name: Test with Go
26+
run: make test

.github/workflows/release.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ jobs:
2525
with:
2626
go-version-file: 'go.mod'
2727
cache: true
28-
- name: Import GPG key
29-
uses: crazy-max/ghaction-import-gpg@01dd5d3ca463c7f10f7f4f7b4f177225ac661ee4 # v6.1.0
30-
id: import_gpg
31-
with:
32-
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
33-
passphrase: ${{ secrets.PASSPHRASE }}
3428
- name: Run GoReleaser
3529
uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6.0.0
3630
with:

0 commit comments

Comments
 (0)