You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/version_bump_and_new_release.yml
+26-4Lines changed: 26 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -12,18 +12,29 @@ on:
12
12
jobs:
13
13
bump-version:
14
14
runs-on: ubuntu-latest
15
+
env:
16
+
BOSH_VERSION: 7.6.1
15
17
16
18
steps:
17
19
- name: Install the requirements
18
20
run: sudo apt update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC sudo apt install jq curl git sed nodejs make wget unzip -y
19
21
20
22
- name: Create the cache
21
-
run: mkdir /tmp/cache /tmp/loki-blobs
23
+
run: mkdir /tmp/cache
24
+
25
+
- name: Create the BOSH private.yml file
26
+
run: |
27
+
cat - > config/private.yml <<EOS
28
+
---
29
+
blobstore:
30
+
options:
31
+
credentials_source: static
32
+
json_key: |
33
+
${{ secrets.GCP_BLOBSTORE_JSON_KEY }}
34
+
EOS
22
35
23
36
- name: Download Bosh CLI
24
-
run: cd /tmp/cache && curl -sL https://github.com/cloudfoundry/bosh-cli/releases/download/v${BOSH_VERSION}/bosh-cli-${BOSH_VERSION}-linux-amd64 > bosh && chmod 777 bosh
25
-
env:
26
-
BOSH_VERSION: 7.6.1
37
+
run: cd /tmp/cache && curl -sL https://github.com/cloudfoundry/bosh-cli/releases/download/v${BOSH_VERSION}/bosh-cli-${{ env.BOSH_VERSION }}-linux-amd64 > bosh && chmod 777 bosh
0 commit comments