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 1246e86 commit 4515a2bCopy full SHA for 4515a2b
.github/workflows/build.yml
@@ -24,9 +24,10 @@ jobs:
24
uses: actions/checkout@v2
25
- name: build
26
run: ./scripts/build.sh
27
- - name: Run make script
+ - name: upload
28
+ if: ${{ github.ref }} == "/refs/heads/master"
29
run: |
30
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
31
+ ./upload.sh
32
env:
33
PROD_ID: ${{ secrets.SIGSCI_PROD_CANONICAL_ID }}
make.sh renamed to upload.sh
@@ -1,8 +1,6 @@
1
#!/bin/sh
2
set -ex
3
4
-# ./scripts/build.sh
5
-
6
if [ -n "${PROD_ID}" ]; then
7
## setup our package properties by distro
8
PKG_NAME="sigsci-module-golang"
0 commit comments