Skip to content

Commit

Permalink
Updated to use newest workflow for deploy-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
craig8 committed May 8, 2023
1 parent ee3de91 commit a23f2d8
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions .github/workflows/make-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,10 @@ on:
required: false
default: ''
type: string
release-version-specified:
type: boolean
description: 'Use release version instead of bumping version from version tag'
default: false
first-release-version:
description: 'Version number to use if this is the first release'
release-version:
description: 'Version number to use. If provided bump-rule will be ignored'
required: false
default: 0.1.0rc0
default: ''
type: string
bump-rule:
description: 'Bump rule for computing next release version number.'
Expand All @@ -30,6 +26,17 @@ on:
- 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:
Expand All @@ -46,12 +53,11 @@ jobs:
contents: write # To push a branch
pull-requests: write # To create a PR from that branch

uses: craig8/github-tooling/.github/workflows/deploy-release.yml@repurpose-first-release-version
uses: eclipse-volttron/github-tooling/.github/workflows/deploy-release.yml@main
with:
merge-strategy: ${{ inputs.merge-strategy }}
first-release-version: ${{ inputs.first-release-version }}
release-version: ${{ inputs.release-version }}
bump-rule: ${{ inputs.bump-rule }}
release-version-specified: ${{ inputs.release-version-specified }}
run-tests-wait: 600
publish-to-test-pypi: false
secrets:
Expand Down

0 comments on commit a23f2d8

Please sign in to comment.