21 lines
559 B
YAML
21 lines
559 B
YAML
name: Gitea actions
|
|
run-name: ${{ gitub.actor }}
|
|
on: [push]
|
|
jobs:
|
|
Build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: apt install -y python3
|
|
- run: pip install screenplain
|
|
- run: pip install 'screenplain[PDF]'
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: screenplain
|
|
key: ${{ runner.os }}-screenplain
|
|
- run: actions/checkout@v4
|
|
- run: mkdir ScreenPlay
|
|
- run: screenplain holyloop.fountain ScreenPlay/holyloop.pdf
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
path: ScreenPlay
|