-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Paul Meyer <[email protected]>
- Loading branch information
1 parent
cbe9545
commit edb1315
Showing
1 changed file
with
18 additions
and
0 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 |
---|---|---|
|
@@ -141,6 +141,24 @@ jobs: | |
run: | | ||
git config --global user.name "edgelessci" | ||
git config --global user.email "[email protected]" | ||
- name: Login to Azure | ||
uses: azure/login@6c251865b4e6290e7b78be643ea2d005bc51f69a # v2.1.1 | ||
with: | ||
creds: ${{ secrets.CONTRAST_CI_INFRA_AZURE }} | ||
- uses: nicknovitski/nix-develop@a2060d116a50b36dfab02280af558e73ab52427d # v1.1.0 | ||
with: | ||
arguments: ./contrast-main# | ||
- name: Create justfile.env | ||
working-directory: contrast-main | ||
run: | | ||
cat <<EOF > justfile.env | ||
container_registry=${{ env.container_registry }} | ||
azure_resource_group=${{ env.azure_resource_group }} | ||
EOF | ||
- name: Get credentials for CI cluster | ||
working-directory: contrast-main | ||
run: | | ||
just get-credentials | ||
- name: Create docs release | ||
if: inputs.kind == 'minor' | ||
working-directory: contrast-main/docs | ||
|