-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2614 from wireapp/release_2022-08-16_08_27
Release 2022-08-16 - (expected chart version 4.22.0)
- Loading branch information
Showing
518 changed files
with
11,411 additions
and
21,182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
on: | ||
pull_request: | ||
push: | ||
branches: [master] | ||
branches: [master, develop] | ||
|
||
jobs: | ||
build-dev-env: | ||
|
@@ -28,3 +28,34 @@ jobs: | |
run: nix-build --no-out-link ./nix -A devEnv | ||
- name: Install the wire-server-direnv | ||
run: nix-env -if ./nix -A devEnv | ||
build-docs: | ||
name: Build docs | ||
environment: cachix | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- uses: cachix/[email protected] | ||
- uses: cachix/cachix-action@v10 | ||
with: | ||
name: wire-server | ||
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | ||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | ||
- name: Build docs | ||
run: nix-build --no-out-link ./nix -A docs | ||
- name: Configure AWS credentials | ||
if: ${{ github.ref == 'refs/heads/develop' }} | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
role-to-assume: arn:aws:iam::093205192929:role/gh-actions-wire-server | ||
aws-region: eu-west-1 | ||
- name: Deploy docs | ||
if: ${{ github.ref == 'refs/heads/develop' }} | ||
run: | | ||
docs=$(nix-build --no-out-link ./nix -A docs) | ||
aws s3 sync $docs/html s3://origin-docs.wire.com/ | ||
aws s3 cp $docs/pdf/wire_federation.pdf s3://origin-docs.wire.com/main.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
env="$(nix-build $PWD/nix/default.nix -A env)" | ||
source_up | ||
|
||
PATH_add "${env}/bin" | ||
docs_env="$(nix-build $PWD/../nix/default.nix -A docsEnv)" | ||
|
||
# source .profile from `$env`. | ||
# This is only used to set things interpolated by nix. All static things should live inside here. | ||
[[ -f "${env}/.profile" ]] && source_env "${env}/.profile" | ||
PATH_add "${docs_env}/bin" | ||
|
||
# allow local .envrc overrides | ||
[[ -f .envrc.local ]] && source_env .envrc.local |
Oops, something went wrong.