added openmct release
Some checks failed
release / release-openmct (push) Failing after 56s
Go / build (1.21) (push) Successful in 1m18s
Go / build (1.22) (push) Successful in 1m18s

This commit is contained in:
saji 2024-03-03 23:29:50 -06:00
parent 058e8d31b2
commit 860d749c6b

25
.github/workflows/build-openmct.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: release
on:
push:
tags:
- '*'
jobs:
release-openmct:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Build
run: go build -v -tags openmct ./cmd/gotelem
- name: Use Go Action
id: use-go-action
uses: https://gitea.com/actions/release-action@main
with:
files: |-
gotelem
api_key: '${{secrets.RELEASE_TOKEN}}'