Skip to content

Commit

Permalink
Create online.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
haochenpan authored Dec 12, 2023
1 parent c519d35 commit 5847053
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/online.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Download and Store File

on:
workflow_dispatch:

jobs:
download-and-store:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Download File
run: |
mkdir -p $HOME/.diaspora
wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=${{ secrets.STORAGE_DB_FOR_TESTING }}' -O $HOME/.diaspora/storage.db
- name: Check File
run: |
ls -l $HOME/.diaspora
ls ~

0 comments on commit 5847053

Please sign in to comment.