diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index 04078ed..3b01c53 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -1,4 +1,4 @@ -name: Build cvemap for Windows 386 +name: Build cvemap for linux on: push: @@ -6,8 +6,7 @@ on: - 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 @@ -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