17 lines
442 B
YAML
17 lines
442 B
YAML
|
name: S3 Repo Backup
|
||
|
run-name: ${{ forgejo.actor }} S3 Repo Backup
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
s3-repo-backup:
|
||
|
steps:
|
||
|
- name: S3 Backup
|
||
|
uses: https://forgejo.dunemask.dev/elysium/elysium-actions@s3-backup
|
||
|
with:
|
||
|
infisical-token: ${{ secrets.INFISICAL_ELYSIUM_EDGE_READ_TOKEN }}
|
||
|
- name: Status Alert
|
||
|
if: always()
|
||
|
run: echo "The Job ended with status ${{ job.status }}."
|