Skip to content

Commit 888759d

Browse files
authored
Merge pull request #49 from ethaaalpha/add-ci
add ci
2 parents 6453533 + e7b1884 commit 888759d

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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 }}

0 commit comments

Comments
 (0)