Skip to content

fix: glue adapter

fix: glue adapter #1

Workflow file for this run

name: Build
on:
push:
branches: [main]
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: Build
run: ./build.sh
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: build
path: build/releases