Skip to content

Commit

Permalink
CI/CD Workflow updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lericson committed Aug 5, 2022
1 parent f2563ab commit df1c7db
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -93,10 +93,15 @@ jobs:
- build_sdist
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
- name: Download artifacts
uses: actions/download-artifact@v3
- name: Make zip of artifacts
run: |
zip -0 artifacts.zip wheels/*.whl dist/*.tar.gz
- name: Release on GitHub
uses: softprops/action-gh-release@v1
with:
files: |
wheels/*.whl
dist/*.tar.gz
artifacts.zip
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
name: CI
on:
push:
branches:
- "*"
pull_request:
branches:
- master
- push
- pull_request

jobs:
test:
timeout-minutes: 10
Expand Down
2 changes: 1 addition & 1 deletion src/pylibmc-version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define PYLIBMC_VERSION "1.7.0-dev"
#define PYLIBMC_VERSION "1.6.2"

0 comments on commit df1c7db

Please sign in to comment.