Skip to content

Commit

Permalink
release: v0.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: rudeigerc <rudeigerc@gmail.com>
  • Loading branch information
rudeigerc committed Aug 27, 2022
1 parent b57ca61 commit c0fd3dd
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release

on:
push:
tags:
- "v*"

jobs:
release-pypi:
name: release-pypi
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Build
run: |
pip install build
python -m build
- name: Upload to Pypi
run: |
pip install twine
twine upload --username __token__ --password ${{ secrets.PYPI_TOKEN }} dist/*
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "scrapy-slackbot"
version = "0.2.0"
version = "0.3.0"
description = "A Scrapy extension to send notification to the Slack channel."
authors = [
{name = "Yuchen Cheng", email = "rudeigerc@gmail.com"},
Expand Down

0 comments on commit c0fd3dd

Please sign in to comment.