Skip to content

Commit

Permalink
add initial workflow to build
Browse files Browse the repository at this point in the history
  • Loading branch information
mo-c4t committed Jun 25, 2024
1 parent bd1cbcf commit 52157f2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Publish Release Artifcats

on:
push:
branches:
- release-artifacts
jobs:
release:
name: Publish Artifcats
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
submodule: true

- uses: actions/setup-go@v5
with:
go-version: '1.20'

- name: Build
run: ./scripts/build.sh

0 comments on commit 52157f2

Please sign in to comment.