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 90b0e49 commit dffa6bfCopy full SHA for dffa6bf
.github/workflows/binary.yaml
@@ -0,0 +1,19 @@
1
+---
2
+name: upload binary
3
+
4
+on:
5
+ release:
6
+ types: [published]
7
8
+jobs:
9
10
+ name: release
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: wangyoucao577/go-release-action@v1.19
15
+ with:
16
+ github_token: ${{ secrets.GITHUB_TOKEN }}
17
+ goos: linux
18
+ goarch: amd64
19
+ binary_name: kube2cdk8s
.github/workflows/test.yaml
@@ -18,4 +18,4 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
20
- name: Test
21
- run: go test -v -cover ./...
+ run: curl -fsSL https://get.pulumi.com | sh && ~/.pulumi/bin/pulumi plugin install resource kubernetes v2.4.2 && go test -v -cover ./...
0 commit comments