1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-14 02:08:50 +02:00

removing unneeded workflow

This commit is contained in:
Joseph Flinn 2021-01-11 18:24:42 +00:00
parent 94546b89ca
commit ffbddc9ddf

View File

@ -1,24 +0,0 @@
name: Experiment
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