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 57f30a6 commit ccc89e4Copy full SHA for ccc89e4
.github/workflows/go.yaml .github/workflows/build.yaml.github/workflows/go.yaml renamed to .github/workflows/build.yaml
@@ -12,7 +12,7 @@ jobs:
12
13
steps:
14
- name: Checkout code
15
- uses: actions/checkout@v4
+ uses: actions/checkout@v5
16
17
- name: Set up Go
18
uses: actions/setup-go@v5
.github/workflows/release.yaml
@@ -0,0 +1,22 @@
1
+name: Release
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
+ - name: Checkout
+ - name: Build
+ run: go build -o observer .
+ - name: Release
19
+ uses: softprops/action-gh-release@v2
20
+ if: github.ref_type == 'tag'
21
+ with:
22
+ files: observer
0 commit comments