Create project copy #22
Workflow file for this run
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: Upload dataset for cloned project | |
on: | |
workflow_dispatch: | |
inputs: | |
sanity-project-id: | |
required: true | |
type: string | |
sanity-project-dataset: | |
required: true | |
type: string | |
jobs: | |
backup-dataset: | |
runs-on: ubuntu-latest | |
name: Backup dataset | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- run: npm install | |
- name: Export dataset | |
uses: sanity-io/[email protected] | |
env: | |
SANITY_AUTH_TOKEN: ${{ secrets.SANITY_AUTH_TOKEN }} | |
with: | |
args: debug --secrets | |
# args: dataset export production backups/backup.tar.gz | |
- name: Upload backup.tar.gz | |
uses: actions/upload-artifact@v2 | |
with: | |
name: backup-tarball | |
path: backups/backup.tar.gz | |
# Fails the workflow if no files are found; defaults to 'warn' | |
if-no-files-found: error | |
# jobs: | |
# upload-dataset: | |
# runs-on: ubuntu-latest | |
# env: | |
# NEXT_PUBLIC_SANITY_PROJECT_ID: ${{ inputs.sanity-project-id }} | |
# NEXT_PUBLIC_SANITY_DATASET: ${{ inputs.sanity-project-dataset }} | |
# steps: | |
# - uses: sanity-io/[email protected] | |
# env: | |
# SANITY_AUTH_TOKEN: ${{ secrets.SANITY_AUTH_TOKEN }} | |
# implementation WITHOUT sanity action | |
# - uses: actions/checkout@v4 | |
# - uses: actions/setup-node@v3 | |
# with: | |
# node-version: '18' | |
# - run: npm install | |
# - run: SANITY_AUTH_TOKEN=tokent npx sanity debug --secrets | |
# implementation WITH sanity action |