Skip to content

Commit bdca14d

Browse files
authored
Merge pull request #12 from billsioros/development
Development
2 parents c2d3bd0 + be5f45f commit bdca14d

File tree

3 files changed

+8
-15
lines changed

3 files changed

+8
-15
lines changed

.github/workflows/publish.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Publish
22

33
on:
4-
push:
5-
branches:
6-
- master
74
pull_request:
85
branches:
96
- master
@@ -14,17 +11,12 @@ jobs:
1411
publish:
1512
name: Publish
1613
runs-on: ubuntu-latest
17-
# if: github.event.pull_request.merged == true
14+
if: github.event.pull_request.merged == true
1815
steps:
1916
- uses: actions/checkout@v2
2017
with:
2118
fetch-depth: 0
2219

23-
# - name: Publish to PyPI
24-
# uses: JRubics/poetry-publish@v1
25-
# with:
26-
# pypi_token: ${{ secrets.DOTIFY_TOKEN }}
27-
2820
- name: Set up Python
2921
uses: actions/setup-python@v2
3022
with:
@@ -44,10 +36,15 @@ jobs:
4436
- name: Push tag
4537
uses: mathieudutour/[email protected]
4638
with:
47-
custom_tag: v${{ env.RELEASE_VERSION }}
39+
custom_tag: ${{ env.RELEASE_VERSION }}
4840
github_token: ${{ secrets.GITHUB_TOKEN }}
4941

5042
- name: Publish a new Release
5143
uses: fregante/release-with-changelog@v3
5244
with:
5345
token: ${{ secrets.GITHUB_TOKEN }}
46+
47+
- name: Publish to PyPI
48+
uses: JRubics/poetry-publish@v1
49+
with:
50+
pypi_token: ${{ secrets.DOTIFY_TOKEN }}

CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,3 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9-
10-
## [v0.1.3] - 2021-04-17
11-
12-
[Unreleased]: https://github.com/billsioros/dotify/compare/v0.1.3...HEAD

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dotify"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
description = "🐍🎶 Yet another Spotify Web API Python library"
55
readme = "README.md"
66
authors = ["billsioros <[email protected]>"]

0 commit comments

Comments
 (0)