-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update everything * yet another NPM update? * whatever, use another syntax * remove library from github repository * test upload lib * try again using a tag * build it or download it, but do not fetch it * update to latest commit * add LnPP2 * add test make library * add BASIS_ZIJLSTRA * update content * add BASIS_ccGRB_UZH
- Loading branch information
Showing
22 changed files
with
1,855 additions
and
7,123 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 |
---|---|---|
|
@@ -4,3 +4,4 @@ commit = True | |
tag = True | ||
|
||
[bumpversion:file:cp2k_basis/__init__.py] | ||
[bumpversion:file:package.json] |
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,41 @@ | ||
name: Publish library in (pre-)release | ||
|
||
on: | ||
push: | ||
branches: [ master, dev ] | ||
|
||
jobs: | ||
build: | ||
name: Make library | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.10' | ||
- name: Install dependencies | ||
run: | | ||
make install-dev | ||
- name: Build | ||
run: | | ||
cb_fetch_data library/DATA_SOURCES.yml -o library.h5 | ||
- name: Upload pre-release version | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: library.h5 | ||
asset_name: latest_library.h5 | ||
tag: latest | ||
overwrite: true | ||
body: "Pre-release library" | ||
- name: Upload release version | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: library.h5 | ||
asset_name: latest_library.h5 | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
body: "Stable release" |
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 |
---|---|---|
|
@@ -255,4 +255,6 @@ cython_debug/ | |
|
||
node_modules/ | ||
cp2k_basis_webservice/static | ||
tmp/ | ||
tmp/ | ||
library.h5 | ||
latest_library.h5 |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ install: | |
pip install -e . | ||
|
||
install-dev: | ||
pip-sync | ||
pip install -e .[dev] | ||
|
||
install-front: | ||
npm i | ||
|
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
Oops, something went wrong.