bad key
Unit Tests with docker compose and cargo / unit-test (push) Successful in 1m54s Details
Build image / build (push) Failing after 1m22s Details

This commit is contained in:
Alie 2024-02-22 17:36:29 +01:00
parent ee5fa5268f
commit 5f305ccaaa
2 changed files with 4 additions and 2 deletions

View File

@ -19,6 +19,7 @@ jobs:
- name: Get access token from secret
run: echo "${{ secrets.MASTODON_SECRET }}" > mastodon-data.toml
- name: Restore cached target
id: cache-restore
uses: actions/cache/restore@v3
with:
path: |
@ -31,4 +32,4 @@ jobs:
with:
path: |
target/
key: ${{ steps.cache-primes-restore.outputs.cache-primary-key }}
key: ${{ steps.cache-restore.outputs.cache-primary-key }}

View File

@ -43,6 +43,7 @@ jobs:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
- name: Restore cached target
id: cache-restore
uses: actions/cache/restore@v3
with:
path: |
@ -61,4 +62,4 @@ jobs:
with:
path: |
target/
key: ${{ steps.cache-primes-restore.outputs.cache-primary-key }}
key: ${{ steps.cache-restore.outputs.cache-primary-key }}