Skip to content

Commit

Permalink
Fix v2.1.4: Fix workflow for build image per tag and main branch (#…
Browse files Browse the repository at this point in the history
…60)

## v2.1.4 - 2024-05-29
### What's Changed
**Full Changelog**: v2.1.3...v2.1.4 by @obervinov in #60
#### 🐛 Bug Fixes
* #60
  • Loading branch information
obervinov authored May 29, 2024
1 parent a50fd61 commit e4ad80d
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 20 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ on:

jobs:
changelog:
uses: obervinov/_templates/.github/workflows/changelog.yaml@v1.2.2
uses: obervinov/_templates/.github/workflows/changelog.yaml@v1.2.3

pylint:
uses: obervinov/_templates/.github/workflows/pylint.yaml@v1.2.2
uses: obervinov/_templates/.github/workflows/pylint.yaml@v1.2.3

pytest:
uses: obervinov/_templates/.github/workflows/pytest-with-vault.yaml@v1.2.2
uses: obervinov/_templates/.github/workflows/pytest-with-vault.yaml@v1.2.3

pyproject:
uses: obervinov/_templates/.github/workflows/pyproject.yaml@v1.2.2
uses: obervinov/_templates/.github/workflows/pyproject.yaml@v1.2.3

pr:
uses: obervinov/_templates/.github/workflows/pr.yaml@v1.2.2
uses: obervinov/_templates/.github/workflows/pr.yaml@v1.2.3

build-pr-image:
uses: obervinov/_templates/.github/workflows/docker.yaml@v1.2.2
uses: obervinov/_templates/.github/workflows/docker.yaml@v1.2.3
needs: [changelog, pylint, pytest, pyproject]
24 changes: 22 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,29 @@ on:
- closed

jobs:
changelog:
uses: obervinov/_templates/.github/workflows/changelog.yaml@v1.2.3

pylint:
uses: obervinov/_templates/.github/workflows/pylint.yaml@v1.2.3

pytest:
uses: obervinov/_templates/.github/workflows/pytest-with-vault.yaml@v1.2.3

pyproject:
uses: obervinov/_templates/.github/workflows/pyproject.yaml@v1.2.3

pr:
uses: obervinov/_templates/.github/workflows/pr.yaml@v1.2.3

build-release-image:
uses: obervinov/_templates/.github/workflows/docker.yaml@v1.2.3
needs: [changelog, pylint, pytest, pyproject]

create-release:
uses: obervinov/_templates/.github/workflows/release.yaml@v1.2.2
uses: obervinov/_templates/.github/workflows/release.yaml@v1.2.3
needs: [build-release-image]

# milestone:
# uses: obervinov/_templates/.github/workflows/milestone.yaml@v1.2.2
# uses: obervinov/_templates/.github/workflows/milestone.yaml@v1.2.3
# needs: [create-release, build-release-image]
10 changes: 0 additions & 10 deletions .github/workflows/tag.yaml

This file was deleted.

9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).


## v2.1.4 - 2024-05-29
### What's Changed
**Full Changelog**: https://github.com/obervinov/pyinstabot-downloader/compare/v2.1.3...v2.1.4 by @obervinov in https://github.com/obervinov/pyinstabot-downloader/pull/60
#### 🐛 Bug Fixes
* [Fix workflow for build image per `tag` and `main` branch](https://github.com/obervinov/pyinstabot-downloader/pull/60)


## v2.1.3 - 2024-05-29
### What's Changed
**Full Changelog**: https://github.com/obervinov/pyinstabot-downloader/compare/v2.1.2...v2.1.3 by @obervinov in https://github.com/obervinov/pyinstabot-downloader/pull/59
#### 🐛 Bug Fixes
* Fixed workflow for build image per tag
* [Fix workflow for build image per tag](https://github.com/obervinov/pyinstabot-downloader/pull/59)


## v2.1.2 - 2024-05-29
Expand Down
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 = "pyinstabot-downloader"
version = "2.1.3"
version = "2.1.4"
description = "This project is a Telegram bot that allows you to backup post content from your Instagram profile to Dropbox or Mega clouds."
authors = ["Bervinov Oleg <obervinov@pm.me>"]
maintainers = ["Bervinov Oleg <obervinov@pm.me>"]
Expand Down

0 comments on commit e4ad80d

Please sign in to comment.