Skip to content

test assort.yml

test assort.yml #19

Workflow file for this run

name: Quarkdown.assort
on:
push
# paths:
# - 'origins.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git.checkout
uses: actions/checkout@v4
- name: Python.setup
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Python.install-packages
run: |
python -m pip install --upgrade pip
# pip install -r requirements.txt
pip install PyGithub
- name: Python.execute
env:
SOME_SECRET: ${{ secrets.AQ }}
run: python source/assort.py
# - name: Git.commit
# run: |
# git config --local user.email "[email protected]"
# git config --local user.name "GitHub Actions"
# git add -A
# git diff-index --quiet HEAD || (git commit -a -m "updated logs" --allow-empty)
# - name: Git.push
# uses: ad-m/[email protected]
# with:
# github_token: ${{ secrets.STIG }}
# branch: origin