forked from gammapy/gammapy
-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (64 loc) · 2 KB
/
release.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
name: Release
on:
push:
tags-ignore:
- 'v*.dev'
jobs:
release-pypi:
if: github.repository_owner == 'gammapy'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Update tags
run: git fetch --tags --force
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: |
python --version
pip install -U build
python -m build --sdist
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
release-github:
if: github.repository_owner == 'gammapy' && !contains(github.ref_name, 'rc')
needs: release-pypi
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@v2
with:
body: |
Gammapy is a Python package for gamma-ray astronomy. See [changelog for this release](https://github.com/gammapy/gammapy/blob/main/docs/release-notes/${{ github.ref_name }}.rst).
dispatch-docs:
if: github.repository_owner == 'gammapy'
needs: release-pypi
runs-on: ubuntu-latest
steps:
- name: Dispatch Gammapy Docs
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.REMOTE_DISPATCH }}
repository: gammapy/gammapy-docs
event-type: release
client-payload: '{"release": "${{ github.ref_name }}"}'
dispatch-webpage:
if: github.repository_owner == 'gammapy'
needs: release-github
runs-on: ubuntu-latest
steps:
- name: Dispatch Gammapy Webpage
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.REMOTE_DISPATCH }}
repository: gammapy/gammapy-webpage
event-type: release
client-payload: '{"release": "${{ github.ref_name }}"}'