mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-22 00:21:08 -05:00
Fail-fast in unsupported environments
https://github.com/pypa/gh-action-pypi-publish/pull/230#discussion_r1632406604 Co-authored-by: Sviatoslav Sydorenko (Святослав Сидоренко) <wk.cvs.github@sydorenko.org.ua>
This commit is contained in:
parent
7ea8313fc2
commit
bacb62682c
1 changed files with 6 additions and 0 deletions
|
@ -93,6 +93,12 @@ branding:
|
||||||
runs:
|
runs:
|
||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
|
- name: Fail-fast in unsupported environments
|
||||||
|
if: runner.os != 'Linux'
|
||||||
|
run: |
|
||||||
|
>&2 echo This action is only able to run under GNU/Linux environments
|
||||||
|
exit 1
|
||||||
|
shell: bash -eEuo pipefail {0}
|
||||||
- name: Reset path if needed
|
- name: Reset path if needed
|
||||||
run: |
|
run: |
|
||||||
# Reset path if needed
|
# Reset path if needed
|
||||||
|
|
Loading…
Reference in a new issue