Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jdkato committed Sep 25, 2023
1 parent d2b6e64 commit 0521bbd
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,17 @@ inputs:
default: ${{ github.token }}

runs:
using: "node20"
pre: |
pip install --upgrade docutils
main: "lib/main.js"
using: "composite"
steps:
- uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install rst2html
run: pip install --upgrade docutils
shell: bash

- name: Run Action
run: |
node lib/main.js
shell: bash

0 comments on commit 0521bbd

Please sign in to comment.