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 8385970 commit eb12514Copy full SHA for eb12514
.github/workflows/go.yml
@@ -0,0 +1,21 @@
1
+name: Go
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
15
+ - name: Set up Go
16
+ uses: actions/setup-go@v2
17
+ with:
18
+ go-version: 1.17
19
20
+ - name: Build
21
+ run: cd etl && go build -v ./...
.github/workflows/release.yml
@@ -0,0 +1,16 @@
+ release:
+ types: [created]
+ release-linux-amd64:
+ name: release linux/amd64
+ - uses: wangyoucao577/go-release-action@v1.26
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ goos: linux
+ goarch: amd64
+ project_path: "./etl"
0 commit comments