forked from Lightning-AI/pytorch-lightning
-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (62 loc) · 2.05 KB
/
release-nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Nightly packages
on:
pull_request: # this shall test only the part of workflow before publishing
branches: [master, "release/*"]
types: [opened, reopened, ready_for_review, synchronize]
paths:
- "requirements/ci.txt"
- ".github/actions/pkg-check/*"
- ".github/actions/pkg-publish/*"
- ".github/workflows/release-nightly.yml"
schedule:
- cron: "0 0 * * 0" # on Sundays
workflow_dispatch: {}
defaults:
run:
shell: bash
jobs:
build-packages:
runs-on: ubuntu-22.04
env:
PKG_NAME: "lightning"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Convert actual version to nightly
run: |
pip install -q -r .actions/requirements.txt
python .actions/assistant.py convert_version2nightly
- run: python -c "print('NB_DIRS=' + str(2 if '${{ env.PKG_NAME }}' == 'pytorch' else 1))" >> $GITHUB_ENV
- name: Build & check package
uses: ./.github/actions/pkg-check
with:
pkg-name: ${{ env.PKG_NAME }}
nb-dirs: ${{ env.NB_DIRS }}
allow-local-changes: "true"
- uses: actions/upload-artifact@v4
with:
name: nightly-packages-${{ github.sha }}
path: dist
include-hidden-files: true
publish-packages:
runs-on: ubuntu-22.04
needs: build-packages
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
env:
PKG_NAME: "lightning"
steps:
- uses: actions/checkout@v4 # needed to use local composite action
- uses: actions/download-artifact@v4
with:
name: nightly-packages-${{ github.sha }}
path: dist
- uses: ./.github/actions/pkg-publish
with:
pkg-folder: dist
pypi-test-token: ${{ secrets[format('PYPI_TEST_TOKEN_{0}', env.PKG_NAME)] }}
- uses: ./.github/actions/pkg-publish
with:
pkg-folder: dist
pypi-token: ${{ secrets[format('PYPI_TOKEN_{0}', env.PKG_NAME)] }}