Skip to content

Commit 1246e86

Browse files
committed
see if i can split out build and upload easily
1 parent 159bc9d commit 1246e86

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
name: sigsci-module-golang
22
on:
33
push:
4-
branches: [ master ]
4+
branches:
5+
- master
6+
- andy/pr-ci
7+
pull_request:
8+
59

610
jobs:
711
build:
@@ -18,6 +22,8 @@ jobs:
1822
aws-region: us-west-2
1923
- name: Check out code into the Go module directory
2024
uses: actions/checkout@v2
25+
- name: build
26+
run: ./scripts/build.sh
2127
- name: Run make script
2228
run: |
2329
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
set -ex
33

4-
./scripts/build.sh
4+
# ./scripts/build.sh
55

66
if [ -n "${PROD_ID}" ]; then
77
## setup our package properties by distro

0 commit comments

Comments
 (0)