-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Prepare release 0.2.0 Co-authored-by: Mikhail Beck <[email protected]>
- Loading branch information
Showing
8 changed files
with
74 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,51 @@ | ||
name: Continues Delivery (Release) | ||
name: Continuous Delivery (Release) | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
project: | ||
description: 'Project to release' | ||
required: true | ||
default: 'pytest-itde' | ||
default: 'pytest-saas' | ||
type: choice | ||
options: | ||
- "pytest-saas" | ||
- "pytest-itde" | ||
version: | ||
description: 'Version number for the release' | ||
required: True | ||
required: true | ||
type: int | ||
jobs: | ||
Release: | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: Check | ||
run: | | ||
echo "Stub: validate that all preconditions for the release are meet" | ||
- name: Fail if not running on main branch | ||
if: ${{ github.ref != 'refs/heads/main' }} | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
core.setFailed('Not running on main branch, github.ref is ${{ github.ref }}. Please start this workflow only on main') | ||
- name: SCM Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Development Environment | ||
uses: ./.github/actions/pytest-plugins-environment | ||
|
||
- name: | ||
run: | | ||
just release ${{ inputs.project }} ${{ inputs.version }} | ||
just release ${PROJECT} | ||
gh release create ${TAG} \ | ||
--title ${TAG} \ | ||
--notes-file ./${PROJECT}/doc/changes/changes_${VERSION}.md \ | ||
--latest \ | ||
--target main \ | ||
${PROJECT}/dist/* | ||
env: | ||
TAG: "${{ inputs.project }}-${{ inputs.version }}" | ||
PROJECT: "${{ inputs.project }}" | ||
VERSION: "${{ inputs.version }}" | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
POETRY_HTTP_BASIC_PYPI_USERNAME: "__token__" | ||
POETRY_HTTP_BASIC_PYPI_PASSWORD: "${{ secrets.PYPI_TOKEN }}" |
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 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 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 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,13 @@ | ||
# 0.2.0 - 2024-06-04 | ||
|
||
## Feature | ||
|
||
* #18: Implemented keep alive for saas-database | ||
|
||
## Bugfixes | ||
|
||
* #19: Fixed removing ip whitelist rule at the end of the test session | ||
|
||
## Refactorings | ||
|
||
* #17: Added workflow for releasing a single plugin |
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 |
---|---|---|
@@ -1,9 +1 @@ | ||
# Unreleased | ||
|
||
## Feature | ||
|
||
* #18: Implemented keep alive for saas-database | ||
|
||
## Bugfixes | ||
|
||
* #19: Fixed removing ip whitelist rule at the end of the test session |
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 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "pytest-exasol-saas" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
description = "" | ||
authors = ["Christoph Kuhnke <[email protected]>"] | ||
readme = "README.md" | ||
|