Skip to content

Commit 4ef206f

Browse files
committed
Test auto tagging pipeline.
1 parent 1920ac3 commit 4ef206f

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.github/workflows/Pipeline.yml

+9-8
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,21 @@ name: Pipeline
22

33
on:
44
push:
5+
create:
56
workflow_dispatch:
67
schedule:
78
# Every Friday at 22:00 - rerun pipeline to check for dependency-based issues
89
- cron: '0 22 * * 5'
910

1011
jobs:
1112
Pipeline:
12-
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r4
13+
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev
1314
with:
14-
package_name: pyVHDLModel
15-
codecov: true
16-
codacy: true
17-
dorny: true
15+
package_name: pyVHDLModel
16+
codecov: true
17+
codacy: true
18+
dorny: true
1819
secrets:
19-
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
20-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
21-
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
20+
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
21+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
22+
CODACY_TOKEN: ${{ secrets.CODACY_TOKEN }}

pyVHDLModel/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
__email__ = "[email protected]"
4949
__copyright__ = "2016-2025, Patrick Lehmann"
5050
__license__ = "Apache License, Version 2.0"
51-
__version__ = "0.31.1"
51+
__version__ = "0.31.2"
5252

5353

5454
from enum import unique, Enum, Flag, auto

run.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Param(
3333
)
3434

3535
$PackageName = "pyVHDLModel"
36-
$PackageVersion = "0.31.1"
36+
$PackageVersion = "0.31.2"
3737

3838
# set default values
3939
$EnableDebug = [bool]$PSCmdlet.MyInvocation.BoundParameters["Debug"]

0 commit comments

Comments
 (0)