Backup Routine #9
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
name: Backup Routine | |
on: | |
workflow_dispatch: | |
#schedule: | |
# Runs at 02:00 UTC every sunday | |
# - cron: '0 2 * * 0' | |
jobs: | |
backup-dataset: | |
runs-on: ubuntu-latest | |
name: Backup dataset | |
strategy: | |
matrix: | |
dataset: ['global-development'] #${{ fromJson(needs.read-satellites.outputs.matrix) }} | |
steps: | |
- name: Install pnpm 📦 | |
id: install-pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: '8.5.1' | |
- uses: actions/checkout@v3 | |
- name: Export Data | |
env: | |
SANITY_AUTH_TOKEN: ${{ secrets.SANITY_DEPLOY }} | |
run: | | |
pnpm install -g @sanity/cli | |
sanity install | |
SANITY_AUTH_TOKEN=$SANITY_AUTH_TOKEN sanity dataset export ${{ matrix.dataset }} backups/backup-${{ matrix.dataset }}.tar.gz | |
- name: Upload backup.tar.gz | |
uses: actions/upload-artifact@v2 | |
with: | |
name: backup-tarball | |
path: backups/${{ matrix.dataset }}.tar.gz | |
# Fails the workflow if no files are found; defaults to 'warn' | |
if-no-files-found: error | |
- uses: act10ns/slack@v1 | |
with: | |
status: ${{ job.status }} | |
steps: ${{ toJson(steps) }} | |
if: failure() |