1
0
mirror of https://github.com/bitwarden/cli synced 2025-12-26 13:03:14 +00:00

testing GH Action cache

This commit is contained in:
Joseph Flinn
2021-01-07 23:06:52 +00:00
parent 26bbd90cf2
commit 44cfa52d9a
2 changed files with 38 additions and 15 deletions

24
.github/workflows/exp.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: Windows Environment Exploration
on:
workflow_dispatch:
jobs:
exp:
runs-on: windows-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Cache Dist
id: cached-dist
uses: actions/cache@v2
with:
path: dist
key: ${{ runner.os }}-${{ hashFiles('dist/') }}
- name: Creating test cache
shell: bash
run: |
[ -f dist/test.txt ] && echo "File exists!"
[ ! -f dist/test.txt ] && mkdir dist && echo "this is a test" > dist/test.txt