mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 16:38:32 +00:00
feat: test upload artifact
This commit is contained in:
parent
27f77759ed
commit
cf030457e0
1 changed files with 11 additions and 4 deletions
15
.github/workflows/tests.yml
vendored
15
.github/workflows/tests.yml
vendored
|
|
@ -51,6 +51,7 @@ jobs:
|
|||
- name: Cache Docker Image
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
key: ${{ env.TAG }}
|
||||
path: /tmp/${{ env.TAG }}.tar
|
||||
|
||||
# - name: Upload Docker Image
|
||||
|
|
@ -71,11 +72,17 @@ jobs:
|
|||
fetch-depth: 1
|
||||
submodules: recursive
|
||||
|
||||
- name: Download artifact
|
||||
uses: actions/download-artifact@v3
|
||||
# - name: Download artifact
|
||||
# uses: actions/download-artifact@v3
|
||||
# with:
|
||||
# name: ${{ env.TAG }}
|
||||
# path: /tmp
|
||||
|
||||
- name: Get Cached Docker Image
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
name: ${{ env.TAG }}
|
||||
path: /tmp
|
||||
key: ${{ env.TAG }}
|
||||
path: /tmp/${{ env.TAG }}.tar
|
||||
|
||||
- name: Load Docker image
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Reference in a new issue