From 860d749c6b568aebb1bd378843fbbe7bba05a93b Mon Sep 17 00:00:00 2001 From: saji Date: Sun, 3 Mar 2024 23:29:50 -0600 Subject: [PATCH] added openmct release --- .github/workflows/build-openmct.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/build-openmct.yml diff --git a/.github/workflows/build-openmct.yml b/.github/workflows/build-openmct.yml new file mode 100644 index 0000000..3619ae8 --- /dev/null +++ b/.github/workflows/build-openmct.yml @@ -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}}'