-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix deployment build to handle manylinux packages better
- Loading branch information
Gal Ben David
committed
Jun 27, 2021
1 parent
7bb8b64
commit 86f0787
Showing
4 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
name: Build | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
lint: | ||
if: github.event_name == 'push' && !startsWith(github.event.ref, 'refs/tags') | ||
|
@@ -36,9 +35,10 @@ jobs: | |
python-version: ${{ matrix.python-version }} | ||
- name: Run image | ||
uses: abatilo/[email protected] | ||
- name: Install latest rust | ||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
override: true | ||
- name: Install dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pydomdisco" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Gal Ben David <[email protected]>"] | ||
edition = "2018" | ||
description = "A fast async domain discovery tool written in Rust" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ strip = true | |
|
||
[tool.poetry] | ||
name = "pydomdisco" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Gal Ben David <[email protected]>"] | ||
description = "A fast async domain discovery tool written in Rust" | ||
readme = "README.md" | ||
|