Skip to content

Commit

Permalink
workflow draft
Browse files Browse the repository at this point in the history
  • Loading branch information
rugeli committed Feb 23, 2024
1 parent 2893482 commit c3c87c1
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/cleanup-firebase.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Cleanup Firebase Metadata

on:
schedule:
- cron: "24 18 * * 1"

jobs:
cleanup:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.9]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[all]
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-west-2
- name: Cleanup Firebase Metadata
env:
STAGING_FIREBASE_TOKEN: ${{ secrets.STAGING_FIREBASE_TOKEN }}
STAGING_FIREBASE_EMAIL: ${{ secrets.STAGING_FIREBASE_EMAIL }}
run: #python scripts

0 comments on commit c3c87c1

Please sign in to comment.