Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Commit aa2f52f

Browse files
committedMar 19, 2020
chore(release): 1.0.1
1 parent 07cbadc commit aa2f52f

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed
 

‎.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- name: Install release dependencies
1313
run: |
14-
python -m pip install --upgrade pip
15-
pip install setuptools wheel twine
16-
python setup.py sdist bdist_wheel
14+
python3 -m pip install --upgrade pip
15+
python3 -m pip install setuptools wheel twine
16+
python3 setup.py sdist bdist_wheel
1717
- name: Publish package
1818
uses: pypa/gh-action-pypi-publish@master
1919
with:

‎.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- name: tags
1414
run: |
15-
git fetch --tags
15+
git fetch --tags --force
1616
- name: version
1717
id: version
1818
run: |
@@ -30,7 +30,7 @@ jobs:
3030
${{ steps.version.outputs.VERSION }}
3131
- name: release
3232
env:
33-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_RELEASE_TOKEN }}
3434
run: |
3535
# https://github.com/itchio/gothub#gothub
3636
$(go env GOPATH)/bin/gothub release \

‎CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
1-
# Changelog
1+
# CHANGELOG
2+
3+
<a name="1.0.1"></a>
4+
## [1.0.1](https://github.com/m0nhawk/grafana_api/compare/1.0.0...1.0.1) (2020-03-18)
5+
6+
### Features
7+
8+
* new release pipeline (ae1bad3)
9+
10+
### Pull Requests
11+
12+
* Merge pull request [#60](https://github.com/m0nhawk/grafana_api/issues/60) from teodoryantcheff/master
13+
* Merge pull request [#57](https://github.com/m0nhawk/grafana_api/issues/57) from m0nhawk/dependabot/pip/unittest-xml-reporting-approx-eq-3.0
14+
215

316
<a name="1.0.0"></a>
417
## [1.0.0](https://github.com/m0nhawk/grafana_api/compare/0.9.3...1.0.0) (2020-02-07)

0 commit comments

Comments
 (0)
This repository has been archived.