Skip to content

Commit bd68d46

Browse files
committed
Fix asset generation for builds, restore check links
1 parent 5a0cd45 commit bd68d46

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ jobs:
5454
run: bundle exec rake projects:symlink
5555
- name: Build Middleman site
5656
run: bundle exec middleman build --verbose
57-
# - name: Check internal links
58-
# run: bundle exec rake check_links:internal
57+
- name: Check internal links
58+
run: bundle exec rake check_links:internal
5959
- name: Prepare build artifact
6060
if: (github.event_name == 'push' && contains(github.ref, 'main')) || github.event_name == 'repository_dispatch'
6161
run: mkdir build && tar cvzf build/docs.tar.gz --exclude ".git" ./docs

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = {
1414
},
1515

1616
output: {
17-
path: __dirname + '/tmp/dist',
17+
path: __dirname + '/.tmp/dist',
1818
filename: 'assets/javascripts/all.js',
1919
},
2020

@@ -32,7 +32,7 @@ module.exports = {
3232
},
3333

3434
plugins: [
35-
new Clean(['tmp/dist']),
35+
new Clean(['.tmp/dist']),
3636
new ExtractTextPlugin('assets/stylesheets/all.css', {
3737
allChunks: true,
3838
}),

0 commit comments

Comments
 (0)