We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d6da344 + 1054f74 commit 36f9f12Copy full SHA for 36f9f12
.github/workflows/conda-package-build.yml
.github/workflows/openalea_ci.yml
@@ -0,0 +1,33 @@
1
+name: OpenAlea CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - master
8
+ tags:
9
+ - 'v*'
10
+ pull_request:
11
+ types:
12
+ - opened
13
+ - synchronize
14
+ - reopened
15
+ release:
16
17
+ - published
18
+ workflow_dispatch:
19
+ inputs:
20
+ check_before_tag:
21
+ description: "Run OpenAlea CI pre-tag build"
22
+ required: false
23
+ default: "true"
24
+ type: boolean
25
26
+run-name: >
27
+ ${{ github.event_name == 'workflow_dispatch' && 'OpenAlea CI pre-tag build' || 'OpenAlea CI' }}
28
29
+jobs:
30
+ build:
31
+ uses: openalea/action-build-publish-anaconda/.github/workflows/openalea_ci.yml@main
32
+ secrets:
33
+ anaconda_token: ${{ secrets.ANACONDA_TOKEN }}
0 commit comments