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
Copy file name to clipboardExpand all lines: README.md
+21-19Lines changed: 21 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,17 +9,17 @@ and that it is located in a conda-style channel directory (see [conda-index](htt
9
9
10
10
Available actions:
11
11
12
-
-[conda-verify](#conda-verify): Verify a conda package by installing it with `micromamba` and ensuring it is importable by Python, and that the version reported by conda and python match.
13
-
-[conda-publish](#conda-publish): Publish a conda package to Anaconda Cloud.
14
-
-[conda-cleanup](#conda-cleanup): Clean up old conda packages from Anaconda Cloud.
12
+
-[pkg-verify](#pkg-verify): Verify a conda package by installing it with `micromamba` and ensuring it is importable by Python, and that the version reported by conda and python match.
13
+
-[pkg-remove](#pkg-remove): Clean up old conda packages from Anaconda Cloud.
14
+
-[publish](#publish): Publish a conda package to Anaconda Cloud.
15
15
16
-
## conda-verify
16
+
## pkg-verify
17
17
18
18
GitHub action to verify a conda package by installing it with `micromamba` and ensuring it is importable by Python, and that the version reported by conda and python match.
19
19
20
20
#### Usage
21
21
22
-
Available inputs are listed in [`conda-verify/action.yaml`](#conda-verify/action.yaml).
22
+
Available inputs are listed in [`pkg-verify/action.yaml`](#pkg-verify/action.yaml).
23
23
24
24
Example usage in a GitHub workflow:
25
25
@@ -39,7 +39,7 @@ jobs:
39
39
path: ${{ env.PKG_NAME }}-*.conda
40
40
41
41
# Then, to verify the conda package:
42
-
conda-verify:
42
+
pkg-verify:
43
43
needs: build
44
44
run-on: ubuntu-latest
45
45
defaults:
@@ -53,35 +53,29 @@ jobs:
53
53
path: /tmp/local-channel/linux-64
54
54
55
55
- name: Verify Conda Package
56
-
uses: neutrons/conda-actions/conda-verify@main
56
+
uses: neutrons/conda-actions/pkg-verify@main
57
57
with:
58
58
local-channel: /tmp/local-channel
59
59
package-name: ${{ env.PKG_NAME }}
60
60
extra-channels: mantid neutrons pyoncat
61
61
```
62
62
63
-
## conda-publish
64
-
65
-
GitHub action to publish a conda package to Anaconda Cloud.
66
-
67
-
#### Usage
68
-
69
-
## conda-cleanup
63
+
## pkg-remove
70
64
71
65
GitHub action to remove old packages of a specific label from [anaconda.org](https://anaconda.org),
72
66
keeping the N most recent versions.
73
67
74
-
## Usage
68
+
#### Usage
75
69
76
-
Available inputs are listed in [`conda-cleanup/action.yaml`](#conda-cleanup/action.yaml).
70
+
Available inputs are listed in [`pkg-remove/action.yaml`](#pkg-remove/action.yaml).
0 commit comments