Skip to content

Commit

Permalink
fix(docs): fix error in config
Browse files Browse the repository at this point in the history
  • Loading branch information
m-thalmann committed Apr 26, 2024
1 parent 5213300 commit c0bd0ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v3

build_docker:
name: Build & push docker image
Expand Down
2 changes: 1 addition & 1 deletion docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let changelogLink = '';
if (fs.existsSync(__dirname + '/version.txt')) {
const _version = fs.readFileSync(__dirname + '/version.txt', 'utf8').trim();

version += v;
version += _version;
changelogLink = 'https://github.com/m-thalmann/SecureDAV/releases/tag/' + _version;
} else {
version += '0.0.0';
Expand Down

0 comments on commit c0bd0ad

Please sign in to comment.