Skip to content

Commit

Permalink
Action: Support running in a docker container (#2748)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshowen authored Jan 7, 2022
1 parent 05e1fbf commit ea4c772
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@

- All upper version bounds on dependencies have been removed (#2718)

### Integrations

- Update GitHub action to support containerized runs (#2748)

## 21.12b0

### _Black_
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
import subprocess;
from pathlib import Path;
MAIN_SCRIPT = Path(r'${{ github.action_path }}') / 'action' / 'main.py';
MAIN_SCRIPT = Path(r'${GITHUB_ACTION_PATH}') / 'action' / 'main.py';
proc = subprocess.run([sys.executable, str(MAIN_SCRIPT)]);
sys.exit(proc.returncode)
Expand Down

0 comments on commit ea4c772

Please sign in to comment.