File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed
Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ # This is the template for the all of the Python VIP projects workflow CI integration
2+ # This is only for release artifacts that must be triggered manually
3+
4+ name : VIP CI Integration (releases)
5+
6+ on :
7+ # this is the action for "manual" triggering using the "run workflow" button
8+ workflow_dispatch :
9+
10+ jobs :
11+ all :
12+ runs-on : ubuntu-latest
13+ steps :
14+ - name : Nexus
15+ uses : virtual-imaging-platform/vip-github-actions/.github/actions/pypi@ci-python
16+ with :
17+ nexus_password : ${{ secrets.NEXUS_PSW }}
18+ is_release : true
Original file line number Diff line number Diff line change 1+ # This is the template for the all of the Python VIP projects workflow CI integration
2+ # This is only for snapshots artifacts
3+
4+ name : VIP CI Integration (snapshots)
5+
6+ on :
7+ push :
8+ branches : [develop]
9+
10+ jobs :
11+ all :
12+ runs-on : ubuntu-latest
13+ steps :
14+ - name : Nexus
15+ uses : virtual-imaging-platform/vip-github-actions/.github/actions/pypi@ci-python
16+ with :
17+ nexus_password : ${{ secrets.NEXUS_PSW }}
You can’t perform that action at this time.
0 commit comments