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 159bc9d commit 1246e86Copy full SHA for 1246e86
.github/workflows/build.yml
@@ -1,7 +1,11 @@
1
name: sigsci-module-golang
2
on:
3
push:
4
- branches: [ master ]
+ branches:
5
+ - master
6
+ - andy/pr-ci
7
+ pull_request:
8
+
9
10
jobs:
11
build:
@@ -18,6 +22,8 @@ jobs:
18
22
aws-region: us-west-2
19
23
- name: Check out code into the Go module directory
20
24
uses: actions/checkout@v2
25
+ - name: build
26
+ run: ./scripts/build.sh
21
27
- name: Run make script
28
run: |
29
aws ecr get-login-password --region us-west-2 | docker login --username AWS --password-stdin 803688608479.dkr.ecr.us-west-2.amazonaws.com
make.sh
@@ -1,7 +1,7 @@
#!/bin/sh
set -ex
-./scripts/build.sh
+# ./scripts/build.sh
if [ -n "${PROD_ID}" ]; then
## setup our package properties by distro
0 commit comments