You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# NOTE: put your own distribution build steps here.
28
+
python -m pip install build
29
+
python -m build
30
+
31
+
- name: Upload distributions
32
+
uses: actions/upload-artifact@v4
33
+
with:
34
+
name: release-dists
35
+
path: dist/
36
+
37
+
pypi-publish:
38
+
runs-on: ubuntu-latest
39
+
needs:
40
+
- release-build
41
+
permissions:
42
+
# IMPORTANT: this permission is mandatory for trusted publishing
43
+
id-token: write
44
+
45
+
# Dedicated environments with protections for publishing are strongly recommended.
46
+
# For more information, see: https://docs.github.com/en/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules
47
+
environment:
48
+
name: pypi
49
+
# OPTIONAL: uncomment and update to include your PyPI project URL in the deployment status:
50
+
#url: https://pypi.org/p/${GITHUB_REPOSITORY#*/}
51
+
#
52
+
# ALTERNATIVE: if your GitHub Release name is the PyPI project version string
53
+
# ALTERNATIVE: exactly, uncomment the following line instead:
**TODO:** Put a description of your extension here: What does it do? What features does it have? Consider including some screenshots or embedding a video!
5
-
4
+
CKAN theme of the Mat-O-Lab Project, changes landing Page and add alternative Data Privacy Act in English and German.
6
5
7
6
## Requirements
8
7
9
-
**TODO:** For example, you might want to mention here which versions of CKAN this
10
-
extension works with.
11
-
12
-
If your extension works across different versions you can add the following table:
13
-
14
8
Compatibility with core CKAN versions:
15
9
16
10
| CKAN version | Compatible? |
@@ -29,31 +23,24 @@ Suggested values:
29
23
30
24
## Installation
31
25
32
-
**TODO:** Add any additional install steps to the list below.
33
-
For example installing any non-Python dependencies or adding any required
34
-
config settings.
35
-
36
-
To install ckanext-matolabtheme:
26
+
To install the extension:
37
27
38
28
1. Activate your CKAN virtual environment, for example:
39
-
40
-
. /usr/lib/ckan/default/bin/activate
41
-
42
-
2. Clone the source and install it on the virtualenv
## Releasing a new version of ckanext-matolabtheme
106
-
107
-
If ckanext-matolabtheme should be available on PyPI you can follow these steps to publish a new version:
108
-
109
-
1. Update the version number in the `setup.py` file. See [PEP 440](http://legacy.python.org/dev/peps/pep-0440/#public-version-identifiers) for how to choose version numbers.
110
-
111
-
2. Make sure you have the latest version of necessary packages:
112
-
113
-
pip install --upgrade setuptools wheel twine
114
-
115
-
3. Create a source and binary distributions of the new version:
0 commit comments