Skip to content

Commit d1cf630

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

File tree

2 files changed

+19
-18
lines changed

2 files changed

+19
-18
lines changed

.github/workflows/docs.yml

+14-13
Original file line numberDiff line numberDiff line change
@@ -31,33 +31,34 @@ 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-
52+
environment:
53+
name: github-pages
54+
url: ${{ steps.deployment.outputs.page_url }}
5055
permissions:
5156
pages: write
5257
id-token: write
5358
actions: read
54-
55-
environment:
56-
name: github-pages
57-
url: ${{ steps.deployment.outputs.page_url }}
58-
5959
runs-on: ubuntu-latest
60+
needs: build
6061
steps:
6162
- name: Deploy to GitHub Pages
6263
id: deployment
63-
uses: actions/deploy-pages@v2
64+
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)