-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2408d3f
commit bd4efdc
Showing
4 changed files
with
32 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM docker:stable | ||
|
||
LABEL version="1.0.0" | ||
LABEL version="1.1.0" | ||
LABEL repository="http://github.com/saucelabs/sauce-connect-action" | ||
LABEL homepage="http://github.com/saucelabs/sauce-connect-action" | ||
LABEL maintainer="Christian Bromann <[email protected]>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,10 @@ | ||
{ | ||
"name": "sauce-connect-action", | ||
"version": "1.0.0", | ||
"description": "A GitHub action to launch Sauce Connect Proxy", | ||
"main": "index.js", | ||
"scripts": { | ||
"docker": "run-s docker:login docker:build docker:tag docker:push:*", | ||
"docker:build": "docker build -t saucelabs/sauce-connect .", | ||
"docker:login": "docker login -u \"$DOCKER_USERNAME\" -p \"$DOCKER_PASSWORD\"", | ||
"docker:push:latest": "docker push saucelabs/sauce-connect-action:latest", | ||
"docker:push:version": "docker push saucelabs/sauce-connect-action:$npm_package_version", | ||
"docker:tag": "docker tag saucelabs/sauce-connect-action saucelabs/sauce-connect-action:$npm_package_version", | ||
"test": "run-p test:*", | ||
"test:setup": "http-server ./test -p 8080 > /dev/null 2>&1 &", | ||
"test:run": "node ./test/test.js" | ||
"author": "Christian Bromann <[email protected]>", | ||
"version": "1.1.0", | ||
"license": "MIT", | ||
"homepage": "https://github.com/saucelabs/sauce-connect-action#readme", | ||
"bugs": { | ||
"url": "https://github.com/saucelabs/sauce-connect-action/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -24,12 +16,16 @@ | |
"proxy", | ||
"saucelabs" | ||
], | ||
"author": "Christian Bromann <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/saucelabs/sauce-connect-action/issues" | ||
"scripts": { | ||
"docker": "run-s docker:build docker:tag docker:push:*", | ||
"docker:build": "docker build -t saucelabs/sauce-connect .", | ||
"docker:push:latest": "docker push saucelabs/sauce-connect-action:latest", | ||
"docker:push:version": "docker push saucelabs/sauce-connect-action:$npm_package_version", | ||
"docker:tag": "docker tag saucelabs/sauce-connect-action saucelabs/sauce-connect-action:$npm_package_version", | ||
"test": "run-p test:*", | ||
"test:setup": "http-server ./test -p 8080 > /dev/null 2>&1 &", | ||
"test:run": "node ./test/test.js" | ||
}, | ||
"homepage": "https://github.com/saucelabs/sauce-connect-action#readme", | ||
"devDependencies": { | ||
"http-server": "^0.12.3", | ||
"npm-run-all": "^4.1.5", | ||
|