Skip to content

Commit 4866bde

Browse files
authored
chore(operations): Add sync-install to GA (#3056)
* chore(operations): Add sync-install to GA Signed-off-by: Ana Hobden <[email protected]> * Migrate over the install.sh to a new workflow Signed-off-by: Ana Hobden <[email protected]> * Fmt Signed-off-by: Ana Hobden <[email protected]> * Limit branches correctly Signed-off-by: Ana Hobden <[email protected]>
1 parent 2e29c36 commit 4866bde

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

.github/workflows/install-sh.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Update install.sh Suite
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
paths:
8+
- 'distribution/install.sh'
9+
10+
jobs:
11+
sync-install:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- env:
15+
AWS_ACCESS_KEY_ID: "${{ secrets.CI_AWS_ACCESS_KEY_ID }}"
16+
AWS_SECRET_ACCESS_KEY: "${{ secrets.CI_AWS_SECRET_ACCESS_KEY }}"
17+
USE_CONTAINER: none
18+
run: make sync-install

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ on:
66
- v0.*
77
- v1.*
88

9-
env:
10-
CHANNEL: nightly
11-
129
jobs:
1310
build-x86_64-unknown-linux-musl-packages:
1411
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)