Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Sep 7, 2020
1 parent 2408d3f commit bd4efdc
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 24 deletions.
18 changes: 15 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.0] - 2020-09-07

### Added
- Support for Sauce Connect v4.6.2

### Changed
- Run `saucelabs/sauce-connect` image via DinD

### Removed
- Ability to set `-f` or `--readyfile` parameter as it was not useful anyway

[1.0.0]: https://github.com/saucelabs/sauce-connect-action/compare/1.0.0...1.1.0

## [1.0.0] - 2019-09-25

Expand All @@ -15,4 +27,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
- N/A

[1.0.0]: https://github.com/joelwmale/sauce-connect-action/compare/1.0.0...1.0.0
[1.0.0]: https://github.com/saucelabs/sauce-connect-action/compare/1.0.0...1.0.0
2 changes: 1 addition & 1 deletion Dockerfile
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]>"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Action Test
steps:
# ...
- uses: saucelabs/sauce-connect-action@v1.0.0
- uses: saucelabs/sauce-connect-action@v1
with:
username: ${{ secrets.SAUCE_USERNAME }}
accessKey: ${{ secrets.SAUCE_ACCESS_KEY }}
Expand Down
34 changes: 15 additions & 19 deletions package.json
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",
Expand All @@ -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",
Expand Down

0 comments on commit bd4efdc

Please sign in to comment.