Skip to content

Commit

Permalink
Remove wheels (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored Dec 26, 2021
1 parent 57d7eee commit 37164eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ _Repository validation action for HACS_
| -------- | ---------------------------------------------------------------------------------------- |
| ignore | A space seperated list of ignored checks |
| category | The type of repository (integration, plugin, theme, netdaemon, appdaemon, python_script) |
| comment | Post the results of the cheks to the PR (true, false) |

## Example

Expand Down Expand Up @@ -49,7 +48,6 @@ All these checks can be disabled with `with.ignore`. Use a string, and if you ig
| `issues` | [More info][issues] | Checks that issues are enabled |
| `requirements` | | Checks that the integration does not import builtin python packages |
| `topics` | [More info][topics] | Checks that the repository has topics |
| `wheels` | [More info][wheels] | Checks if the domain is added to the custom wheels repo |

[archived]: https://hacs.xyz/docs/publish/include#check-archived
[brands]: https://hacs.xyz/docs/publish/include#check-brands
Expand All @@ -60,7 +58,6 @@ All these checks can be disabled with `with.ignore`. Use a string, and if you ig
[information]: https://hacs.xyz/docs/publish/include#check-info
[issues]: https://hacs.xyz/docs/publish/include#check-repository
[topics]: https://hacs.xyz/docs/publish/include#check-repository
[wheels]: https://hacs.xyz/docs/publish/include#check-wheels

## Versions

Expand Down
13 changes: 4 additions & 9 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ runs:
using: "composite"
steps:
- shell: bash
name: Clanup
run: |
bash "${{ github.action_path }}/helpers/cleanup"
Expand Down Expand Up @@ -76,21 +77,15 @@ runs:
echo "::endgroup::"
- shell: bash
name: Run the action
run: |
bash "${{ github.action_path }}/run"
- shell: bash
id: comment
run: |
if [ "${{ inputs.comment }}" == "true" ]; then
python3 -m pip install -U wheel setuptools > /dev/null
python3 -m pip install -U aiogithubapi > /dev/null
python3 "${{ github.action_path }}/helpers/post_result.py"
fi
- shell: bash
name: wrapup
run: bash "${{ github.action_path }}/helpers/wrapup" "${{ github.action_path }}"

- shell: bash
name: cleanup
run: |
bash "${{ github.action_path }}/helpers/cleanup"

0 comments on commit 37164eb

Please sign in to comment.