FediFetcher/.github/workflows/get_context.yml
Workflow config file is invalid. Please check your config file: yaml: line 11: did not find expected '-' indicator
Michael Thomas 9f259547c0 get started
2023-03-06 12:42:15 +00:00

30 lines
729 B
YAML

name: getContext
on:
# schedule:
# - cron: '0 0 * * *'
workflow_dispatch:
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Download all workflow run artifacts
uses: actions/download-artifact@v3
with:
name: artifacts
- name: Display structure of downloaded files
run: ls -R
- run: python get_context.py mstdn.thms.uk 1 1
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: artifacts
path: |
artifacts