Skip to content

Commit ed94211

Browse files
committed
chore: fix indentation in README.md
1 parent f25b3ca commit ed94211

File tree

2 files changed

+16
-19
lines changed

2 files changed

+16
-19
lines changed

.github/workflows/docs.yml

+11-14
Original file line numberDiff line numberDiff line change
@@ -31,33 +31,30 @@ jobs:
3131
run: pnpm install --prefix ./docs
3232

3333
- name: Build
34-
run: cd docs && pnpm run generate
34+
run: |
35+
cd docs
36+
pnpm run generate
37+
ls -la .output/public
3538
3639
- name: Fix permissions
3740
run: |
38-
chmod -c -R +rX "./docs/.output/public" | while read line; do
41+
chmod -c -R +rX "docs/.output/public" | while read line; do
3942
echo "::warning title=Invalid file permissions automatically fixed::$line"
4043
done
4144
42-
- name: Upload Pages artifact
43-
uses: actions/upload-pages-artifact@v2
45+
- name: Upload static files as artifact
46+
id: deployment
47+
uses: actions/upload-pages-artifact@v3 # or specific "vX.X.X" version tag for this action
4448
with:
45-
path: ./docs/.output/public
49+
path: docs/.output/public
4650

4751
deploy:
48-
needs: build
49-
50-
permissions:
51-
pages: write
52-
id-token: write
53-
actions: read
54-
5552
environment:
5653
name: github-pages
5754
url: ${{ steps.deployment.outputs.page_url }}
58-
5955
runs-on: ubuntu-latest
56+
needs: build
6057
steps:
6158
- name: Deploy to GitHub Pages
6259
id: deployment
63-
uses: actions/deploy-pages@v2
60+
uses: actions/deploy-pages@v4

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ Built with Go, Backrest is distributed as a standalone, lightweight binary with
2727

2828
- **Web Interface**: Access locally or remotely (perfect for NAS deployments)
2929
- **Multi-Platform Support**:
30-
- Linux
31-
- macOS
32-
- Windows
33-
- FreeBSD
30+
- Linux
31+
- macOS
32+
- Windows
33+
- FreeBSD
3434
- [Docker](https://hub.docker.com/r/garethgeorge/backrest)
3535
- **Backup Management**:
3636
- Import existing restic repositories
@@ -39,7 +39,7 @@ Built with Go, Backrest is distributed as a standalone, lightweight binary with
3939
- Configurable notifications (Discord, Slack, Shoutrrr, Gotify, Healthchecks)
4040
- Pre/post backup command hooks to execute shell scripts
4141
- **Storage Options**:
42-
- Compatible with rclone remotes
42+
- Compatible with rclone remotes
4343
- Supports all restic storage backends (S3, B2, Azure, GCS, local, SFTP, and [all rclone remotes](https://rclone.org/))
4444

4545
---

0 commit comments

Comments
 (0)