-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9dc5472
commit d88602c
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Acquire Citadel Actions Cache | ||
on: | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
name: Acquire Citadel Actions Cache | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
steps: | ||
- name: Delete huge unnecessary tools folder | ||
run: rm -rf /opt/hostedtoolcache | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Mark Library folder to be preserved | ||
uses: actions/cache@v3 | ||
with: | ||
path: Library | ||
key: Library-Android-Experimental | ||
restore-keys: | | ||
Library-Android | ||
- name: Download custom Docker image | ||
run: | | ||
echo "${{ secrets.DOCKER_TOKEN }}" | docker login --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin | ||
docker pull josiahjack/citadel-ci:ubuntu-2019.4.35f1-android-2.0.0 | ||
- name: Upload built files | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Citadel_DevBuild_AndroidExperimental | ||
path: | | ||
Library | ||
if-no-files-found: error |