Skip to content

Commit 025e41d

Browse files
authored
CI Fixes (#331)
* Update ci-build.yml * Update style.yml * update pypi badge * bump version to 0.57.1 * literal branch name for gh-pages
1 parent 7841c57 commit 025e41d

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

.ci/azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ trigger:
1010
include:
1111
- '*'
1212
exclude:
13-
- gh-pages
13+
- 'gh-pages'
1414
tags:
1515
include:
1616
- '*'

.github/workflows/ci-build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Build documentation
22
name: Documentation Build
33

4-
on: [push, pull_request, workflow_dispatch]
4+
on:
5+
push:
6+
branches-ignore:
7+
# Push events to branches matching refs/heads/mona/octocat
8+
- 'gh-pages'
9+
pull_request:
510

611
jobs:
712
# This workflow contains a single job called "build"

.github/workflows/style.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# check spelling, codestyle
22
name: Style Check
33

4-
on: [push, pull_request, workflow_dispatch]
4+
on:
5+
push:
6+
branches-ignore:
7+
# Push events to branches matching refs/heads/mona/octocat
8+
- 'gh-pages'
9+
pull_request:
510

611
jobs:
712
build:

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PyMAPDL
22
=======
3-
.. image:: https://img.shields.io/pypi/v/pymapdl.svg
4-
:target: https://pypi.org/project/pymapdl/
3+
.. image:: https://badge.fury.io/py/ansys-mapdl-core.svg
4+
:target: https://badge.fury.io/py/ansys-mapdl-core
55

66
.. image:: https://dev.azure.com/pyansys/pyansys/_apis/build/status/pyansys.pymapdl?branchName=master
77
:target: https://dev.azure.com/pyansys/pyansys/_build/latest?definitionId=5&branchName=master

ansys/mapdl/core/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Version of ansys-mapdl-core module."""
22

33
# major, minor, patch
4-
version_info = 0, 57, 0
4+
version_info = 0, 57, 1
55

66
# Nice string for the version
77
__version__ = '.'.join(map(str, version_info))

0 commit comments

Comments
 (0)