Skip to content

merge main

merge main #6

Workflow file for this run

name: Build cvemap for Windows 386
on:
push:
branches:
- gh_workflow_test
jobs:
build:
runs-on: windows-latest # Use a Windows runner for 386 builds
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.20.x # Use the desired Go version
- name: Debug with tmate session
uses: mxschmitt/action-tmate@v3
- name: Build cvemap
run: go build -o cvemap.exe main.go
working-directory: ${{ github.workspace }}
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: cvemap
path: ./cvemap.exe