-
Notifications
You must be signed in to change notification settings - Fork 0
93 lines (77 loc) · 2.45 KB
/
publish.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# This workflow will install Python dependencies, run tests and lint/formatting - possibly with a variety of Python versions - bump version, re-commit publish to PYPI
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Publish Python package
on:
push:
branches: [ "main" ]
paths-ignore:
- '**.yml'
- '**.yaml'
- '**.json'
- '**.md'
- '.vscode'
- 'scripts'
- 'tests'
workflow_dispatch:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
package:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.9"]
permissions: write-all
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- uses: pdm-project/setup-pdm@v3
with:
version: 'head'
python-version: ${{ matrix.python-version }}
update-python: true
cache: true
- name: Install dependencies
run: |
pdm install
- name: Test, format, lint
env:
DBHUB_API_KEY: ${{ secrets.DBHUB_API_KEY }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
CODE_OCEAN_API_TOKEN: ${{ secrets.CODE_OCEAN_API_TOKEN }}
CODE_OCEAN_DOMAIN: ${{ secrets.CODE_OCEAN_DOMAIN }}
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
REDIS_DEFAULT_USER_PASSWORD: ${{ secrets.REDIS_DEFAULT_USER_PASSWORD }}
run: |
git clone https://github.com/alleninstitute/npc_lims
mkdir .mypy_cache
pdm prebuild
- name: Bump project version
run: |
pdm bumpver
- name: Publish
run: |
pdm publish
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: "Bump [skip actions]"
- name: Tag commit
run: |
pdm tag
git push --tags
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}