Skip to content

Commit

Permalink
github workflows test
Browse files Browse the repository at this point in the history
  • Loading branch information
NikodemMarek committed Dec 8, 2023
1 parent b5091e1 commit ed732ff
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/cheatsheet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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 ../../cheatsheets /github/workspace/

- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: cheatsheets
path: cheatsheets

0 comments on commit ed732ff

Please sign in to comment.