Dump action as JSON

This commit is contained in:
Brendon Smith 2024-06-01 17:08:20 -04:00
parent 61e875d7fe
commit c962c3384d
No known key found for this signature in database
4 changed files with 3 additions and 17 deletions

View File

@ -130,8 +130,7 @@ runs:
- name: Create Docker container action
run: |
# Create Docker container action
python -m pip install -r requirements/github-actions.txt
python create-docker-action.py ${{ steps.set-image.outputs.image }}
python create-docker-action.py
env:
EVENT: ${{ github.event_name }}
REF: ${{ steps.set-repo-and-ref.outputs.ref }}

View File

@ -1,8 +1,7 @@
import json
import os
import pathlib
import yaml
DESCRIPTION = 'description'
REQUIRED = 'required'
@ -83,6 +82,4 @@ action = {
action_path = pathlib.Path('.github/actions/run-docker-container/action.yml')
action_path.parent.mkdir(parents=True, exist_ok=True)
with action_path.open(mode='w', encoding='utf-8') as file:
yaml.dump(action, file, allow_unicode=True, sort_keys=False)
action_path.write_text(json.dumps(action, ensure_ascii=False), encoding='utf-8')

View File

@ -1,2 +0,0 @@
# NOTE: used by create-docker-action.py
pyyaml

View File

@ -1,8 +0,0 @@
#
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile --allow-unsafe --config=../.pip-tools.toml --output-file=github-actions.txt --strip-extras github-actions.in
#
pyyaml==6.0.1
# via -r github-actions.in