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.
2 parents 83f21e8 + 2fefcad commit 88923b3Copy full SHA for 88923b3
.github/actions/build/action.yml
@@ -0,0 +1,25 @@
1
+name: Build and Test
2
+description: "Build and test it"
3
+
4
+inputs:
5
+ docker_password:
6
+ description: "Password to log into Dockerhub"
7
+ required: true
8
+ go_build_token:
9
+ description: "Token that allows to push to the Google Artifact Registry"
10
11
12
+runs:
13
+ using: "composite"
14
+ steps:
15
+ - name: Clone build-helper
16
+ uses: actions/checkout@v4
17
+ with:
18
+ repository: snabble/build-helper
19
+ path: build-helper
20
+ token: "${{ inputs.go_build_token }}"
21
22
+ - name: build
23
+ uses: ./build-helper/.github/workflows/build-go-library
24
25
+ gh-token: ${{inputs.go_build_token}}
.travis.yml
0 commit comments