-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71c7519
commit f7aee9f
Showing
8 changed files
with
243 additions
and
42 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Build Frontend | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
build-frontend: | ||
name: Build Frontend | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 21 | ||
- name: Install dependencies | ||
run: | | ||
cd front | ||
npm install | ||
- name: Build app | ||
run: | | ||
cd front | ||
npm run build | ||
- name: Upload build | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: frontend | ||
path: front/out |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Build Frontend | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
build-user-guide: | ||
name: Build User Guide | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
- name: Install dependencies | ||
run: | | ||
cd back | ||
pip install -r guide_requirements.txt | ||
- name: Build Guide | ||
run: | | ||
cd back | ||
mkdocs build -d mkdocs-guide.yml -d site | ||
- name: Upload build | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: user_guide | ||
path: back/site |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
name: Publish PyPI | ||
on: | ||
workflow_dispatch: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
build-user-guide: | ||
uses: mbsantiago/whombat/.github/workflows/build_user_guide.yml@dev | ||
|
||
build-frontend: | ||
uses: mbsantiago/whombat/.github/workflows/build_frontend.yml@dev | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
needs: [build-user-guide, build-frontend] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.11" | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: frontend | ||
path: back/src/whombat/statics/ | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: user_guide | ||
path: back/src/whombat/user_guide/ | ||
- name: Install pypa/build | ||
run: pip install build | ||
- name: Build a binary wheel and source tarball | ||
run: | | ||
cd back | ||
python -m build | ||
- name: Store the distribution packages | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: python-package-distributions | ||
path: back/dist/ | ||
|
||
publish-to-pypi: | ||
name: Publish to PyPI | ||
needs: [build] | ||
runs-on: ubuntu-latest | ||
|
||
if: github.event_name == 'release' | ||
|
||
environment: | ||
name: pypi | ||
url: https://pypi.org/p/whombat | ||
|
||
permissions: | ||
id-token: write | ||
steps: | ||
- name: Download all the dists | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: python-package-distributions | ||
path: dist/ | ||
- name: Publish distribution 📦 to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
|
||
github-release: | ||
name: Upload to GitHub release | ||
needs: [publish-to-pypi] | ||
runs-on: ubuntu-latest | ||
|
||
if: github.event_name == 'release' | ||
|
||
permissions: | ||
contents: write | ||
id-token: write | ||
|
||
steps: | ||
- name: Download the dists | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: python-package-distributions | ||
path: dist/ | ||
- name: Upload artifact to GitHub Release | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
run: | | ||
gh release upload '${{ github.ref_name }}' dist/** --repo '${{github.repository }}' | ||
publish-to-testpypi: | ||
name: Publish to TestPyPI | ||
needs: [build] | ||
runs-on: ubuntu-latest | ||
|
||
if: github.event_name == 'workflow_dispatch' | ||
|
||
environment: | ||
name: testpypi | ||
url: https://test.pypi.org/p/whombat | ||
|
||
permissions: | ||
id-token: write | ||
|
||
steps: | ||
- name: Download all the dists | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: python-package-distributions | ||
path: dist/ | ||
- name: Publish distribution 📦 to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 |
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