Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# This is the template for the all of the Python VIP projects workflow CI integration
# This is only for release artifacts that must be triggered manually

name: VIP CI Integration (releases)

on:
# this is the action for "manual" triggering using the "run workflow" button
workflow_dispatch:

jobs:
all:
runs-on: ubuntu-latest
steps:
- name: Nexus
uses: virtual-imaging-platform/vip-github-actions/.github/actions/pypi@ci-python
with:
nexus_password: ${{ secrets.NEXUS_PSW }}
is_release: true
17 changes: 17 additions & 0 deletions .github/workflows/python-snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This is the template for the all of the Python VIP projects workflow CI integration
# This is only for snapshots artifacts

name: VIP CI Integration (snapshots)

on:
push:
branches: [develop]

jobs:
all:
runs-on: ubuntu-latest
steps:
- name: Nexus
uses: virtual-imaging-platform/vip-github-actions/.github/actions/pypi@ci-python
with:
nexus_password: ${{ secrets.NEXUS_PSW }}