Skip to content

Commit dce43d7

Browse files
authored
Merge pull request #8 from schandrika/toml_update
Toml update
2 parents acb84ab + ea105c2 commit dce43d7

File tree

10 files changed

+191
-271
lines changed

10 files changed

+191
-271
lines changed

.github/workflows/deploy-pre-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ env:
1414
LC_ALL: en_US.utf-8
1515
PYTHON_VERSION: '3.10'
1616
PROJECT_NAME: volttron-lib-sql-historian
17-
POETRY_VERSION: '1.2.2'
1817

1918
jobs:
2019

.github/workflows/dispatch-to-pypi.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/downstream-test-response.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/make-release.yml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: Make full release
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
publish-to-test-pypi:
7+
description: 'Publish to test pypi instead of pypi'
8+
required: false
9+
default: false
10+
type: boolean
11+
bump-rule:
12+
description: 'Rule for computing next release version'
13+
required: false
14+
default: 'prerelease'
15+
type: choice
16+
options:
17+
- patch
18+
- minor
19+
- major
20+
- prepatch
21+
- preminor
22+
- premajor
23+
- prerelease
24+
release-version:
25+
description: 'Version number to use(instead of computing). Should be of the format x.y.z[rcn]. Do not use hyphens.'
26+
required: false
27+
default: ''
28+
type: string
29+
merge-strategy:
30+
description: 'Merge strategy and strategy options. Used only in case of merge conflicts'
31+
required: false
32+
default: ''
33+
type: string
34+
35+
defaults:
36+
run:
37+
shell: bash
38+
39+
env:
40+
LANG: en_US.utf-8
41+
LC_ALL: en_US.utf-8
42+
PYTHON_VERSION: '3.10'
43+
44+
jobs:
45+
call-deploy-release:
46+
permissions:
47+
contents: write # To push a branch
48+
pull-requests: write # To create a PR from that branch
49+
50+
uses: eclipse-volttron/github-tooling/.github/workflows/deploy-release.yml@main
51+
with:
52+
merge-strategy: ${{ inputs.merge-strategy }}
53+
release-version: ${{ inputs.release-version }}
54+
bump-rule: ${{ inputs.bump-rule }}
55+
run-tests-wait: 600
56+
publish-to-test-pypi: false
57+
secrets:
58+
git-token: ${{ secrets.AUTO_PROJECT_PAT }}
59+
pypi-token: ${{ secrets.PYPI_TOKEN }}

.github/workflows/publish-to-pypi.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/run-downstream-tests.yml

Lines changed: 0 additions & 88 deletions
This file was deleted.

0 commit comments

Comments
 (0)