Skip to content
This repository has been archived by the owner on Jun 30, 2024. It is now read-only.

Commit

Permalink
v.0.1.5 - Improved release flow
Browse files Browse the repository at this point in the history
  • Loading branch information
rix committed May 20, 2024
1 parent 0ef15c2 commit 5feefd7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 23 deletions.
18 changes: 1 addition & 17 deletions .github/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,4 @@
- Zukünftige Restbudgets sind nicht im Kopfbereich aufrufbar


### Changelog BudgeTeer:

#### v.0.1.2
- Fehlerbehebung bei Aktivierung von Basic Auth
- Die Gültigkeit von künftigen Budgets wird beim Anzeigen und Berechnen dieser beachtet
- Budgets können monatlich als gebucht markiert werden

#### v.0.1.1
- Fehlerkorrektur beim Hinzufügen neuer Konten, Transaktionen und Budgets
- Budgets können umbenannt und gelöscht werden

#### v.0.1.0
- Kontostände, Budgets und offene Transaktionen werden beim Sperren automatisch gespeichert
- Budgeteintrag auf Gültigkeitszeitraum prüfen
- Datepicker implementiert (für Gültigkeitszeitraum der Budgets)
- Kontostände in die Kopfzeile verschoben
- Schaltfläche "Speichern" beim Löschen von Budgets und offenen Transaktionen anzeigen
### Changelog:
13 changes: 10 additions & 3 deletions .github/workflows/CreateRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ name: Release Artifacts
on:
push:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/workflows/**'
- '.github/**'
- 'docker/**'
branches:
- main
Expand Down Expand Up @@ -101,6 +100,14 @@ jobs:
- name: Get Version
run: echo "version=$(python budgeteer/providers/version.py)" >>$GITHUB_OUTPUT
id: version
- name: Generate commit changelog
id: changelog
uses: metcalfc/[email protected] # this requires at least one release tag in the repo!
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Append commit changelog
run: |
echo -e "\n${{ steps.changelog.outputs.changelog }}" >> .github/Changelog.md
- name: Create Release
uses: ncipollo/release-action@v1
with:
Expand All @@ -113,4 +120,4 @@ jobs:
python -m twine upload ./artifact-wheel/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}
- name: Trigger Docker Image build
run: |
curl -XPOST -u "${{ secrets.CR_USER }}:${{secrets.CR_PAT}}" -H "Accept: application/vnd.github.v3+json" -H "Content-Type: application/json" https://api.github.com/repos/rix1337/BudgeTeer/actions/workflows/BuildImage.yml/dispatches --data '{"ref": "main", "inputs": {"version": "${{ steps.version.outputs.version }}"}"}'
curl -XPOST -H "authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/vnd.github.v3+json" -H "Content-Type: application/json" https://api.github.com/repos/rix1337/BudgeTeer/actions/workflows/BuildImage.yml/dispatches --data '{"ref": "main", "inputs": {"version": "${{ steps.version.outputs.version }}"}"}'
2 changes: 1 addition & 1 deletion .github/workflows/UpdateOnBaseImageChange.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ jobs:
image: ${{ env.IMAGE }}
- name: Trigger Docker Image build
run: |
curl -XPOST -u "${{ secrets.CR_USER }}:${{secrets.CR_PAT}}" -H "Accept: application/vnd.github.v3+json" -H "Content-Type: application/json" https://api.github.com/repos/rix1337/Budgeteer/actions/workflows/BuildImage.yml/dispatches --data '{"ref": "main"}'
curl -XPOST -H "authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/vnd.github.v3+json" -H "Content-Type: application/json" https://api.github.com/repos/rix1337/BudgeTeer/actions/workflows/BuildImage.yml/dispatches --data '{"ref": "main"}'
if: steps.baseupdatecheck.outputs.needs-updating == 'true'
2 changes: 1 addition & 1 deletion budgeteer/providers/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def get_version():
return "0.1.4"
return "0.1.5"


def create_version_file():
Expand Down
2 changes: 1 addition & 1 deletion budgeteer/web_interface/vuejs_frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "budgeteer-web",
"version": "0.1.2",
"version": "0.1.5",
"scripts": {
"dev": "vite",
"build": "vite build",
Expand Down

0 comments on commit 5feefd7

Please sign in to comment.