Skip to content

Commit 6cce9b9

Browse files
authored
Fix workflow for publishing (#55)
1 parent 110df80 commit 6cce9b9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/pythonpublish-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ jobs:
99
runs-on: ubuntu-latest
1010
container: konstin2/maturin
1111
steps:
12+
- uses: actions/checkout@v1
1213
- name: Build wheel
13-
uses: actions/checkout@v1
1414
run: |
1515
maturin publish -b cffi --no-sdist -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --manylinux 2014
1616
aarch-linux-wheels:
1717
runs-on: ubuntu-latest
1818
container: messense/manylinux_2_24-cross:aarch64
1919
steps:
20+
- uses: actions/checkout@v1
2021
- name: Build wheel
21-
uses: actions/checkout@v1
2222
run: |
2323
curl https://sh.rustup.rs -sSf | bash -s -- -y
2424
source $HOME/.cargo/env

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sycret"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
authors = ["Pierre Tholoniat"]
55
edition = "2018"
66
license = "Apache-2.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="sycret",
12-
version="0.2.2",
12+
version="0.2.3",
1313
author="Pierre Tholoniat",
1414
author_email="pierre@tholoniat.com",
1515
url="https://github.com/OpenMined/sycret",

0 commit comments

Comments
 (0)