Skip to content

auto fetch artifacts #14

auto fetch artifacts

auto fetch artifacts #14

Workflow file for this run

name: cheatsheet
on: [push, pull_request, workflow_dispatch]
permissions:
contents: write
jobs:
cheatsheet:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build docker image and generate cheatsheets
run: |
docker compose build
docker compose up
- name: commit cheatsheets
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git add cheatsheets
git commit -m "update cheatsheet"
git push