build and test pipelines #2

Merged
bizcochito merged 37 commits from build into develop 2024-02-23 07:14:21 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 5f305ccaaa - Show all commits

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