Hi,
I would like to know if this feature is available in that sdks, I tried this but the cache does not work. I did the same for the cue sdk and it works.
on:
workflow_dispatch:
jobs:
dagger:
runs-on: ubuntu-latest
env:
DAGGER_CACHE_FROM: type=gha,scope=dagger-cache-example
DAGGER_CACHE_TO: type=gha,mode=max,scope=dagger-cache-example
steps:
- uses: actions/checkout@v3
- name: "Run Dagger"
uses: dagger/dagger-for-github@v3
with:
install-only: true
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Pip install
run: |
pip install anyio
pip install dagger-io
pip install python-dotenv
- name: Run dagger script
run: python simple-dagger.py
```
Is it possible to do it with python or node? Thanks in advance