Skip to content

actually commit it to the repo #3

actually commit it to the repo

actually commit it to the repo #3

Workflow file for this run

name: cheatsheet
on: [push, pull_request, workflow_dispatch]
jobs:
cheatsheet:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Build Docker Image
run: |
docker compose build
docker compose up
- name: Copy Generated File
run: cp -r $(pwd)/cheatsheets /github/workspace/
- name: Commit Changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git add .
git commit -m "Update cheatsheet"
git push