We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a842bce commit 4940635Copy full SHA for 4940635
.github/workflows/create-release-pr.yml
.github/workflows/release.yml
@@ -0,0 +1,26 @@
1
+name: Sensu Release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '*'
7
8
+jobs:
9
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ contents: write
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - name: Build Go check plugins
17
+ run: make build
18
+ - name: Rename build directory
19
+ run: mv build bin
20
+ - name: Create tar archive of build directory
21
+ run: tar -czpvf sensu-go-check-plugins.tar.gz bin/
22
+ - name: Generate SHA512 sum of archive
23
+ run: sha512sum sensu-go-check-plugins.tar.gz > sha512sum.txt
24
+ - uses: ncipollo/release-action@v1
25
+ with:
26
+ artifacts: "sensu-go-check-plugins.tar.gz,sha512sum.txt"
.github/workflows/test.yml
0 commit comments