Skip to content

Commit

Permalink
Format build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Jul 31, 2024
1 parent d8fb599 commit b71e0cf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ name: packages
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+a[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+b[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+rc[0-9]+'
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+a[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+b[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+rc[0-9]+"
# Dry-run only
workflow_dispatch:
schedule:
- cron: '0 17 * * SUN'
- cron: "0 17 * * SUN"

jobs:
conda_build:
name: Build Conda Packages
runs-on: 'ubuntu-latest'
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -l {0}
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
run: doit package_upload --token=${{ secrets.CONDA_UPLOAD_TOKEN }} --label=dev --label=main
pip_build:
name: Build PyPI Packages
runs-on: 'ubuntu-latest'
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -l {0}
Expand Down

0 comments on commit b71e0cf

Please sign in to comment.