Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Fixes ${ISSUE_URL}
#### Offline Build CI (label-based)
Add one or more labels to trigger offline builds:
- `build-default` - Full production build (ansible, terraform, all packages)
- `build-demo` - Demo/WIAB build
- `build-dev` - WIAB/dev build
- `build-wiab-staging` - WIAB-staging build
- `build-min` - Minimal build (fastest, essential charts only)
- `build-all` - Run all three builds
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/offline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,9 @@ jobs:
env:
DOCKER_LOGIN: '${{ secrets.DOCKER_LOGIN }}'

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

- name: Process the demo profile build
- name: Process the dev profile build
run: ./offline/demo-build/build.sh
env:
GPG_PRIVATE_KEY: "${{ secrets.GPG_PRIVATE_KEY }}"
DOCKER_LOGIN: "${{ secrets.DOCKER_LOGIN }}"

- name: Copy demo build assets tarball to S3
- name: Copy dev build assets tarball to S3
run: |
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
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"
Expand All @@ -237,7 +237,7 @@ jobs:
env:
HCLOUD_TOKEN: '${{ secrets.HCLOUD_TOKEN }}'

- name: Cleanup demo build assets
- name: Cleanup dev build assets
run: rm -rf offline/demo-build/output/

# Build min profile
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FIXED: github workflow and PR template references for wiab-dev
Loading