Skip to content

Commit

Permalink
Merge pull request #237 from matejkosiarcik/develop
Browse files Browse the repository at this point in the history
Automated PR
  • Loading branch information
matejkosiarcik committed Jun 20, 2023
2 parents d65668a + f8072f4 commit ef93c36
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/deploy-dockerhub-description.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Deploy dockerhub description

permissions: read-all
on: release

jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.3

- name: Update DockerHub description
uses: peter-evans/dockerhub-description@v3.4.2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: matejkosiarcik/planckpng
short-description: ${{ github.event.repository.description }}
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## \[Unreleased\]

## \[0.3.1\] - 2023-06-20

- Miscellaneous
- Update dependencies
- Do not publish `:dev` tag for "trunk" releases (only `:edge`)
- Update DockerHub description automatically

## \[0.3.0\] - 2023-06-20

Expand Down
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def main(argv: List[str]):

# parse arguments
parser = argparse.ArgumentParser(prog="planckpng")
parser.add_argument("-V", "--version", action="version", version="%(prog)s 0.3.0")
parser.add_argument("-V", "--version", action="version", version="%(prog)s 0.3.1")
parser.add_argument(
"-l",
"--level",
Expand Down

0 comments on commit ef93c36

Please sign in to comment.