Skip to content

Commit

Permalink
Merge branch 'releases/v0.1.2rc0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Deploy Release Github Action committed May 12, 2023
2 parents 8855768 + a1f355d commit 2240686
Show file tree
Hide file tree
Showing 23 changed files with 863 additions and 557 deletions.
4 changes: 0 additions & 4 deletions .github/RELEASE-TEMPLATE.md

This file was deleted.

120 changes: 0 additions & 120 deletions .github/workflows/create-release.yml

This file was deleted.

3 changes: 2 additions & 1 deletion .github/workflows/deploy-pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ defaults:
env:
LANG: en_US.utf-8
LC_ALL: en_US.utf-8
PYTHON_VERSION: '3.8'
PYTHON_VERSION: '3.10'
POETRY_VERSION: 1.2.2
OWNER: eclipse-volttron

jobs:

deploy-pre-release:
if: github.ref_name != 'main'
runs-on: ubuntu-22.04
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
Expand Down
38 changes: 0 additions & 38 deletions .github/workflows/dispatch-to-pypi.yml

This file was deleted.

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

on:
workflow_dispatch:
inputs:
merge-strategy:
description: 'Merge strategy and strategy options. Used only in case of merge conflicts'
required: false
default: ''
type: string
release-version:
description: 'Version number to use. If provided bump-rule will be ignored'
required: false
default: ''
type: string
bump-rule:
description: 'Bump rule for computing next release version number.'
required: false
default: 'prerelease'
type: choice
options:
- patch
- minor
- major
- prepatch
- preminor
- premajor
- prerelease
run-tests-wait:
description: 'Wait time to run test after merge to main'
required: false
default: 600
type: number
publish-to-test-pypi:
description: 'Set to true if you want to publish to https://test.pypi.org/legacy/ instead of pypi.org'
required: false
default: false
type: boolean


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 }}
name: Make full release

on:
workflow_dispatch:
inputs:
merge-strategy:
description: 'Merge strategy and strategy options. Used only in case of merge conflicts'
required: false
default: ''
type: string
release-version:
description: 'Version number to use. If provided bump-rule will be ignored'
required: false
default: ''
type: string
bump-rule:
description: 'Bump rule for computing next release version number.'
required: false
default: 'prerelease'
type: choice
options:
- patch
- minor
- major
- prepatch
- preminor
- premajor
- prerelease
run-tests-wait:
description: 'Wait time to run test after merge to main'
required: false
default: 600
type: number
publish-to-test-pypi:
description: 'Set to true if you want to publish to https://test.pypi.org/legacy/ instead of pypi.org'
required: false
default: false
type: boolean


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 }}
39 changes: 0 additions & 39 deletions .github/workflows/publish-to-pypi.yml

This file was deleted.

Loading

0 comments on commit 2240686

Please sign in to comment.