Skip to content

Commit

Permalink
Update actions versions in new project template
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Nov 4, 2022
1 parent f67b057 commit a3e9650
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/templates/CI.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- main
- master
pull_request:
workflow_dispatch:

jobs:
linux:
Expand All @@ -18,7 +19,7 @@ jobs:
command: build
args: --release --sdist -o dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -32,7 +33,7 @@ jobs:
command: build
args: --release -o dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -46,7 +47,7 @@ jobs:
command: build
args: --release -o dist --universal2 --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -57,7 +58,7 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/')"
needs: [ macos, windows, linux ]
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: wheels
- name: Publish to PyPI
Expand Down

0 comments on commit a3e9650

Please sign in to comment.