Skip to content

Commit

Permalink
Bump release version (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
teddyphreak authored Jul 1, 2023
1 parent 4d5337d commit c1d9c05
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: version
on:
pull_request:
branches:
- master

jobs:
version:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Verify Changed files
uses: tj-actions/verify-changed-files@v16
id: check
with:
files: |
charts/dataplane/Chart.yaml
pyproject.toml
- name: Fail if version has not been updated
if: steps.check.outputs.files_changed == 'true'
run: exit 1
4 changes: 2 additions & 2 deletions charts/dataplane/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.14
version: 0.1.15

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 0.1.14
appVersion: 0.1.15
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dataplane"
version = "0.1.14"
version = "0.1.15"
description = ""
authors = ["Teodoro Cook <[email protected]>"]

Expand Down

0 comments on commit c1d9c05

Please sign in to comment.