diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index c7ad46546..a07e9b513 100755 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,10 +19,10 @@ jobs: - name: Build run: go build -v ./... + - name: Build arm - run: | - GOOS=linux GOARCH=arm64 go build -v ./... - file ./../server + run: GOOS=linux GOARCH=arm64 go build -v ./... + - uses: codfish/semantic-release-action@v1 with: dry_run: true diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 161428b3f..f8471ea47 100755 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,17 +21,5 @@ jobs: run: | go build -v ./... - build-arm: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: "1.21" - architecture: arm - - name: Build - run: | - go build -v ./... + - name: Build arm + run: GOOS=linux GOARCH=arm64 go build -v ./... \ No newline at end of file diff --git a/.github/workflows/sample-run.yml b/.github/workflows/sample-run.yml index 1bb7ed05e..87362f49e 100755 --- a/.github/workflows/sample-run.yml +++ b/.github/workflows/sample-run.yml @@ -21,19 +21,5 @@ jobs: run: | go build -v ./... - build-arm: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - - name: Setup Go - uses: actions/setup-go@v4 - with: - go-version: "1.21" - architecture: arm - - - name: Build Keploy - run: | - go build -v ./... \ No newline at end of file + - name: Build arm + run: GOOS=linux GOARCH=arm64 go build -v ./... \ No newline at end of file