Set CLOUDRON_CREATE_APP_BACKUP to false for demo #3
This file contains hidden or 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
| on: | |
| push: | |
| branches: | |
| - demo | |
| jobs: | |
| deploy-to-cloudron-app: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v6 | |
| - name: Install composer dependencies | |
| uses: php-actions/composer@v6 | |
| - name: Cloudron Push to App | |
| uses: cloudron-io/cloudron-push-to-app@latest | |
| with: | |
| # DANGER: These values are cleartext for demo purposes only. NEVER do this in production! Use GitHub Secrets instead. | |
| # DANGER: With this API token, anyone can fully control your Cloudron instance! | |
| # INFO: This TOKEN is only valid until the my.demo.cloudron.io instance is reset. | |
| CLOUDRON_FQDN: "0d8117263fbd8a91db1069440f0b06921950e0a7df29c107727391aff921db45" | |
| CLOUDRON_TOKEN: "my.demo.cloudron.io" | |
| CLOUDRON_APP_ID: "a5eeeaf8-e754-41d8-8d91-d99272e4afa9" | |
| CLOUDRON_PUSH_DESTINATION: "/app/data/public" | |
| CLOUDRON_CREATE_APP_BACKUP: "false" |