Skip to content

Commit

Permalink
misc update
Browse files Browse the repository at this point in the history
  • Loading branch information
RamanaReddy0M committed Oct 18, 2023
1 parent ae757f8 commit 2ae59f9
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
name: Build cvemap for Windows 386
name: Build cvemap for linux

on:
push:
branches:
- gh_workflow_test
jobs:
build:
runs-on: ubuntu-latest # Use a Windows runner for 386 builds

runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -18,11 +17,11 @@ jobs:
go-version: 1.x # Use the desired Go version

- name: Build cvemap
run: go build -o cvemap.exe main.go
run: go build -o cvemap main.go
working-directory: ${{ github.workspace }}

- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: cvemap
path: ./cvemap.exe
path: ./cvemap

0 comments on commit 2ae59f9

Please sign in to comment.