Skip to content

Commit a32beb4

Browse files
committed
fix: wpb-23988 github workflow and PR template references for wiab-dev
1 parent 94cb04d commit a32beb4

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Fixes ${ISSUE_URL}
2424
#### Offline Build CI (label-based)
2525
Add one or more labels to trigger offline builds:
2626
- `build-default` - Full production build (ansible, terraform, all packages)
27-
- `build-demo` - Demo/WIAB build
27+
- `build-dev` - WIAB/dev build
2828
- `build-wiab-staging` - WIAB-staging build
2929
- `build-min` - Minimal build (fastest, essential charts only)
3030
- `build-all` - Run all three builds

.github/workflows/offline.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ jobs:
179179
env:
180180
DOCKER_LOGIN: '${{ secrets.DOCKER_LOGIN }}'
181181

182-
# Build demo profile
182+
# Build dev profile
183183
build-dev:
184-
name: Build demo profile
184+
name: Build dev profile
185185
if: |
186186
(github.event_name == 'push' && github.ref == 'refs/heads/master') ||
187187
contains(github.event.pull_request.labels.*.name, 'build-all') ||
@@ -205,13 +205,13 @@ jobs:
205205
id: upload_name
206206
run: echo "UPLOAD_NAME=$GITHUB_SHA" >> $GITHUB_OUTPUT
207207

208-
- name: Process the demo profile build
208+
- name: Process the dev profile build
209209
run: ./offline/demo-build/build.sh
210210
env:
211211
GPG_PRIVATE_KEY: "${{ secrets.GPG_PRIVATE_KEY }}"
212212
DOCKER_LOGIN: "${{ secrets.DOCKER_LOGIN }}"
213213

214-
- name: Copy demo build assets tarball to S3
214+
- name: Copy dev build assets tarball to S3
215215
run: |
216216
aws s3 cp offline/demo-build/output/assets.tgz s3://public.wire.com/artifacts/wire-server-deploy-static-demo-${{ steps.upload_name.outputs.UPLOAD_NAME }}.tgz
217217
echo "Uploaded to: https://s3-$AWS_REGION.amazonaws.com/public.wire.com/artifacts/wire-server-deploy-static-demo-${{ steps.upload_name.outputs.UPLOAD_NAME }}.tgz"
@@ -237,7 +237,7 @@ jobs:
237237
env:
238238
HCLOUD_TOKEN: '${{ secrets.HCLOUD_TOKEN }}'
239239

240-
- name: Cleanup demo build assets
240+
- name: Cleanup dev build assets
241241
run: rm -rf offline/demo-build/output/
242242

243243
# Build min profile

0 commit comments

Comments
 (0)