-
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
f383d8e
commit b71a6c7
Showing
1 changed file
with
16 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 |
---|---|---|
|
@@ -110,6 +110,22 @@ jobs: | |
with: | ||
ref: main | ||
path: contrast-main | ||
- uses: ./.github/actions/setup_nix | ||
with: | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} | ||
cachixToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | ||
- name: Configure git | ||
run: | | ||
git config --global user.name "edgelessci" | ||
git config --global user.email "[email protected]" | ||
- name: Create docs release | ||
working-directory: contrast-main | ||
run: | | ||
nix run .#yarn install | ||
nix run .#yarn docusaurus docs:version ${{ needs.process-inputs.outputs.WITHOUT_V }} | ||
git commit -am "docs: release ${{ needs.process-inputs.outputs.WITHOUT_V }}" | ||
# Clean up auxiliary files, so next steps run on a clean tree | ||
git clean -fx :/ | ||
- name: Bump flake version to post release patch pre-version | ||
id: bump | ||
uses: ./contrast-working/.github/actions/bump_version # Run action from working branch! | ||
|