Skip to content

Commit

Permalink
Merge pull request #8 from schandrika/toml_update
Browse files Browse the repository at this point in the history
Toml update
  • Loading branch information
craig8 authored May 9, 2023
2 parents acb84ab + ea105c2 commit dce43d7
Show file tree
Hide file tree
Showing 10 changed files with 191 additions and 271 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deploy-pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ env:
LC_ALL: en_US.utf-8
PYTHON_VERSION: '3.10'
PROJECT_NAME: volttron-lib-sql-historian
POETRY_VERSION: '1.2.2'

jobs:

Expand Down
39 changes: 0 additions & 39 deletions .github/workflows/dispatch-to-pypi.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/downstream-test-response.yml

This file was deleted.

59 changes: 59 additions & 0 deletions .github/workflows/make-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Make full release

on:
workflow_dispatch:
inputs:
publish-to-test-pypi:
description: 'Publish to test pypi instead of pypi'
required: false
default: false
type: boolean
bump-rule:
description: 'Rule for computing next release version'
required: false
default: 'prerelease'
type: choice
options:
- patch
- minor
- major
- prepatch
- preminor
- premajor
- prerelease
release-version:
description: 'Version number to use(instead of computing). Should be of the format x.y.z[rcn]. Do not use hyphens.'
required: false
default: ''
type: string
merge-strategy:
description: 'Merge strategy and strategy options. Used only in case of merge conflicts'
required: false
default: ''
type: string

defaults:
run:
shell: bash

env:
LANG: en_US.utf-8
LC_ALL: en_US.utf-8
PYTHON_VERSION: '3.10'

jobs:
call-deploy-release:
permissions:
contents: write # To push a branch
pull-requests: write # To create a PR from that branch

uses: eclipse-volttron/github-tooling/.github/workflows/deploy-release.yml@main
with:
merge-strategy: ${{ inputs.merge-strategy }}
release-version: ${{ inputs.release-version }}
bump-rule: ${{ inputs.bump-rule }}
run-tests-wait: 600
publish-to-test-pypi: false
secrets:
git-token: ${{ secrets.AUTO_PROJECT_PAT }}
pypi-token: ${{ secrets.PYPI_TOKEN }}
40 changes: 0 additions & 40 deletions .github/workflows/publish-to-pypi.yml

This file was deleted.

88 changes: 0 additions & 88 deletions .github/workflows/run-downstream-tests.yml

This file was deleted.

Loading

0 comments on commit dce43d7

Please sign in to comment.