Skip to content

Commit

Permalink
ci: update GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
BoboTiG committed Apr 14, 2023
1 parent 39a355e commit 7ace7a9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ on:
branch:
description: "The branch, tag or SHA to release from"
required: true
default: "master"
default: "main"

jobs:
pure-built-distributions:
name: Build pure wheels
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.branch }}
- name: Install Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
- name: Install build dependencies
run: python -m pip install -U pip setuptools wheel
- name: Build wheels
Expand All @@ -33,11 +33,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.branch }}
- name: Install Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
- name: Build source distribution
run: python setup.py sdist
- name: Store the source distribution
Expand Down

0 comments on commit 7ace7a9

Please sign in to comment.