2024-09-12 09:41:55 +02:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
Build:
|
|
|
|
steps:
|
|
|
|
|
2024-09-12 09:43:47 +02:00
|
|
|
- name: Install apt packages
|
2024-09-12 09:41:55 +02:00
|
|
|
run: |
|
|
|
|
echo "sadasdasdas" >> test.txt
|
|
|
|
|
|
|
|
- name: Cache repository
|
|
|
|
uses: actions/cache/save@v4
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
test.txt
|
2024-09-12 09:43:47 +02:00
|
|
|
key: BeefRepository
|