Skip to content

Commit

Permalink
allowing "manual" rebuild of linux wheels #3
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch authored Nov 24, 2022
1 parent 283e46e commit 677f7bd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/wheel-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
pull_request: # run on pull requests
paths-ignore: # but ignore everything in the docs subfolder
- 'docs/**'
workflow_dispatch:
schedule:
- cron: '5 1 * * *'

Expand Down Expand Up @@ -90,15 +91,15 @@ jobs:
if-no-files-found: warn

publish-wheels:
if: github.repository == 'eclipse/sumo' && (github.event_name == 'schedule' || startsWith(github.ref, 'refs/tags'))
if: github.repository == 'eclipse/sumo' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags'))
needs: [test-wheels]
runs-on: ubuntu-latest

steps:
- name: Downloading Wheels artifact
uses: actions/download-artifact@v3

# this step removes the pypy versions until someone needs them to save some space
# this step removes the pypy versions to save some space (can be reenabled if someone needs them)
- name: Moving artifacts
run: |
ls -lR
Expand Down

0 comments on commit 677f7bd

Please sign in to comment.