Skip to content

oops forgot to remove the copying #4

oops forgot to remove the copying

oops forgot to remove the copying #4

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: 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