forked from xarray-contrib/xeofs
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (48 loc) · 1.59 KB
/
release_package.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
name: Release Package After Merge
on:
push:
branches:
- main
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
jobs:
Release_Package:
runs-on: ubuntu-latest
concurrency: release
permissions:
id-token: write
contents: write
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Git-cliff Changelog
uses: orhun/git-cliff-action@v2
id: git-cliff
with:
config: cliff.toml
args: --verbose
env:
OUTPUT: CHANGELOG.md
- name: Add Changelog
run: |
git add CHANGELOG.md
# This action uses Python Semantic Release v8
- name: Python Semantic Release
id: release
uses: python-semantic-release/python-semantic-release@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
changelog: false
# - name: Publish package distributions to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
# # NOTE: DO NOT wrap the conditional in ${{ }} as it will always evaluate to true.
# # See https://github.com/actions/runner/issues/1173
# if: steps.release.outputs.released == 'true'
# with:
# password: ${{ secrets.PYPI_TOKEN }}
# - name: Publish package distributions to GitHub Releases
# uses: python-semantic-release/upload-to-gh-release@main
# if: steps.release.outputs.released == 'true'
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}