-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into refactor-schema-generation
- Loading branch information
Showing
4 changed files
with
16 additions
and
10 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
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
name: Deploy release documentation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Wait for Dev documentation to deploy | ||
- name: Wait for dev documentation to deploy | ||
uses: lewagon/[email protected] | ||
with: | ||
ref: main | ||
|
@@ -55,11 +55,10 @@ jobs: | |
run: | | ||
export RELEASE_TAG_VERSION=${{ github.event.release.tag_name }} | ||
echo "RELEASE_TAG_VERSION=${RELEASE_TAG_VERSION::3}" >> $GITHUB_ENV | ||
- name: Depoly documentation | ||
- name: Deploy documentation | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
GOOGLE_ANALYTICS_KEY: ${{ secrets.GOOGLE_ANALYTICS_KEY }} | ||
run: | | ||
git fetch origin gh-pages --depth=1 | ||
pdm run mike deploy --rebase --push -F ${GITHUB_WORKSPACE}/mkdocs.yml --update-aliases latest ${RELEASE_TAG_VERSION} | ||
pdm run mike set-default --rebase --push -F ${GITHUB_WORKSPACE}/mkdocs.yml latest | ||
pdm run mike deploy -up ${RELEASE_TAG_VERSION} latest |
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 |
---|---|---|
|
@@ -16,9 +16,16 @@ env: | |
|
||
jobs: | ||
documentation: | ||
name: Build documentation | ||
name: Deploy preview documentation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Wait for dev documentation to deploy | ||
uses: lewagon/[email protected] | ||
with: | ||
ref: main | ||
check-name: 'Deploy dev documentation' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
wait-interval: 10 | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
|
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,6 +1,6 @@ | ||
[project] | ||
name = "bloqade" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
description = "Neutral atom software development kit" | ||
authors = [ | ||
{name = "QuEra Computing Inc.", email = "[email protected]"}, | ||
|