Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container: python:2.7-slim
steps:
- uses: actions/checkout@v3
- name: Get tag
Expand All @@ -18,8 +17,7 @@ jobs:
with:
strip_v: false
- name: Run setup
run: |
python setup.py sdist
run: docker run --rm -v "$PWD:/src" -w /src python:2.7-slim python setup.py sdist
- name: Creating a realease/pre-release
id: create_release
uses: softprops/action-gh-release@v1
Expand Down
Loading