Skip to content

Commit

Permalink
fix: final commit
Browse files Browse the repository at this point in the history
Signed-off-by: Akash Kumar <meakash7902@gmail.com>
  • Loading branch information
AkashKumar7902 committed Oct 12, 2023
1 parent 459d696 commit 3ad2ec4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 33 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Expand Up @@ -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
Expand Down
16 changes: 2 additions & 14 deletions .github/workflows/main.yml
Expand Up @@ -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 ./...
18 changes: 2 additions & 16 deletions .github/workflows/sample-run.yml
Expand Up @@ -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 ./...
- name: Build arm
run: GOOS=linux GOARCH=arm64 go build -v ./...

0 comments on commit 3ad2ec4

Please sign in to comment.