-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from schandrika/toml_update
Toml update
- Loading branch information
Showing
10 changed files
with
191 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.