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
+14-3Lines changed: 14 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,8 @@ 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
@@ -20,10 +22,19 @@ jobs:
20
22
- name: Create the cache
21
23
run: mkdir /tmp/cache /tmp/loki-blobs
22
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
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