Skip to content

Merge pull request #1 from inventage/fix-status-parse-and-labels #7

Merge pull request #1 from inventage/fix-status-parse-and-labels

Merge pull request #1 from inventage/fix-status-parse-and-labels #7

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build
run: go build -v -o ssacli-exporter main.go
- name: Upload binaries
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: "ssacli-exporter"
tag: ${{ github.ref }}
overwrite: true
body: "Ssacli Exporter Release"