Skip to content

Commit

Permalink
bump version 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymoulin committed Sep 24, 2024
1 parent e54a3c6 commit f4aaa20
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
jobs:
build-docker-and-package:
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v2
- name: Installing dependencies
Expand All @@ -22,7 +25,7 @@ jobs:
- name: Build package
run: make install
- name: Publish package
run: python3 -m twine upload dist/* -u "${{ secrets.PYPI_USERNAME }}" -p "${{ secrets.PYPI_PASSWORD }}"
uses: pypa/gh-action-pypi-publish@release/v1
- name: Build image
run: make build-docker
- name: Publish image
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: all test publish install clean check build-docker publish-docker

VERSION ?= 1.2.0
VERSION ?= 1.3.2
CACHE ?= --no-cache=1

all: build-docker publish-docker
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:alpine

ARG VERSION=1.3.1
ARG VERSION=1.3.2
ARG TARGETPLATFORM

LABEL maintainer="Jay MOULIN <https://jaymoulin.me/me/youtube-music-uploader/>"
Expand Down
2 changes: 1 addition & 1 deletion youtube_music_uploader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"""

__all__ = ['uploader_daemon', '__version__']
__version__ = '1.3.1'
__version__ = '1.3.2'

0 comments on commit f4aaa20

Please sign in to comment.