Skip to content

Commit 4b0ee86

Browse files
committed
Fix npm deployments
1 parent d9f4604 commit 4b0ee86

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.npmignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist/
2+
!dist/.htaccess
3+
test/

.travis.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,16 @@ jobs:
3535
- docker ps -a
3636
- docker logs server
3737
- name: "Build Tests"
38+
language: node_js
39+
node_js: node
3840
script: ./test/build/test_userbuild.sh
39-
before_deploy: ./bin/build.sh dist/.htaccess htaccess.conf
41+
before_deploy:
42+
- ./bin/build.sh dist/.htaccess htaccess.conf
43+
- ./bin/build.sh dist/h5bp.htaccess htaccess.conf
4044
deploy:
4145
- provider: releases
4246
api_key: $GITHUB_API_TOKEN
43-
file: dist/.htaccess
47+
file: dist/h5bp.htaccess
4448
skip_cleanup: true
4549
on:
4650
tags: true

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "server-configs-apache",
3-
"version": "3.2.0",
2+
"name": "apache-server-configs",
3+
"version": "3.2.1",
44
"author": "The H5BP Team",
55
"description": "Boilerplate configurations for the Apache HTTP server",
66
"repository": "h5bp/server-configs-apache",

0 commit comments

Comments
 (0)