File tree Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 12
12
schedule :
13
13
- cron : " 14 14 20 * *"
14
14
15
+ # Use bash by default in all jobs
16
+ defaults :
17
+ run :
18
+ # Using "-l {0}" is necessary for conda environments to be activated
19
+ # But this breaks on MacOS if using actions/setup-python:
20
+ # https://github.com/actions/setup-python/issues/132
21
+ shell : bash
22
+
15
23
# Cancel any previous run of the test job.
16
24
concurrency :
17
25
group : ${{ github.workflow }}-${{ github.ref }}
34
42
- name : Checkout
35
43
uses : actions/checkout@v4
36
44
with :
37
- # Need to fetch more than the last commit so that setuptools_scm can
38
- # create the correct version string. If the number of commits since
39
- # the last release is greater than this, the version still be wrong.
40
- # Increase if necessary.
41
- fetch-depth : 100
42
45
# The GitHub token is preserved by default but this job doesn't need
43
46
# to be able to push to GitHub.
44
47
persist-credentials : false
70
73
# Checks-out your repository under $GITHUB_WORKSPACE
71
74
- name : Checkout
72
75
uses : actions/checkout@v4
76
+ with :
77
+ # The GitHub token is preserved by default but this job doesn't need
78
+ # to be able to push to GitHub.
79
+ persist-credentials : false
73
80
74
81
- name : Setup Python
75
82
uses : actions/setup-python@v5
88
95
echo ""
89
96
echo "Generated files:"
90
97
ls -lh dist/
98
+ # Remove wheel
99
+ rm dist/fftlog*.whl
91
100
92
101
- name : Publish to PyPI
93
102
# Only for releases
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Changelog
5
5
v0.2.2 : Update home and build backend
6
6
--------------------------------------
7
7
8
- **2024-12-30 **
8
+ **2024-12-31 **
9
9
10
10
No code changes. What changed:
11
11
- Moved from github.com/prisae to github.com/emsig.
You can’t perform that action at this time.
0 commit comments