-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v2.2.0: Exporter
Prometheus
, webdav
as target storage and…
… bug fixes (#90) ## v2.2.0 - 2024-08-20 ### What's Changed **Full Changelog**: v2.1.8...v2.2.0 by @obervinov in #90 #### 🐛 Bug Fixes * #86 * #85 * #84 * #83 * #82 * #65 #### 🚀 Features * bump workflow version to `1.2.8` * #81 * #53 * #66 * Add GH Actions Job for cleanup untagged images
- Loading branch information
Showing
19 changed files
with
670 additions
and
223 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 |
---|---|---|
|
@@ -11,20 +11,20 @@ on: | |
|
||
jobs: | ||
changelog: | ||
uses: obervinov/_templates/.github/workflows/[email protected].6 | ||
uses: obervinov/_templates/.github/workflows/[email protected].8 | ||
|
||
pylint: | ||
uses: obervinov/_templates/.github/workflows/[email protected].6 | ||
uses: obervinov/_templates/.github/workflows/[email protected].8 | ||
|
||
pytest: | ||
uses: obervinov/_templates/.github/workflows/[email protected].6 | ||
uses: obervinov/_templates/.github/workflows/[email protected].8 | ||
|
||
pyproject: | ||
uses: obervinov/_templates/.github/workflows/[email protected].6 | ||
uses: obervinov/_templates/.github/workflows/[email protected].8 | ||
|
||
pr: | ||
uses: obervinov/_templates/.github/workflows/[email protected].6 | ||
uses: obervinov/_templates/.github/workflows/[email protected].8 | ||
|
||
build-pr-image: | ||
uses: obervinov/_templates/.github/workflows/[email protected].6 | ||
uses: obervinov/_templates/.github/workflows/[email protected].8 | ||
needs: [changelog, pylint, pytest, pyproject] |
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 |
---|---|---|
|
@@ -10,8 +10,21 @@ on: | |
|
||
jobs: | ||
create-release: | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
cleanup-untagged-images: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Delete untagged images from GitHub Container Registry | ||
continue-on-error: true | ||
uses: Chizkiyahu/delete-untagged-ghcr-action@v3 | ||
with: | ||
token: ${{ secrets.PAT_GHCR_CLEANUP }} | ||
package_name: 'pyinstabot-downloader' | ||
untagged_only: true | ||
except_untagged_multiplatform: false | ||
owner_type: 'user' | ||
|
||
# milestone: | ||
# uses: obervinov/_templates/.github/workflows/[email protected].6 | ||
# uses: obervinov/_templates/.github/workflows/[email protected].8 | ||
# needs: [create-release] |
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,4 +1,4 @@ | ||
FROM python:3.9.15-alpine3.17 | ||
FROM python:3.9.19-alpine3.20 | ||
|
||
### External argumetns ### | ||
ARG PROJECT_DESCRIPTION | ||
|
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
Oops, something went wrong.