This repository has been archived by the owner on Aug 30, 2021. It is now read-only.
generated from actions/javascript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust and merge new features into master (#19)
* Updates from forked repository (#18) * Adjusting new features .eslintrc.json | 17 - .github/CODEOWNERS | 1 + .github/FUNDING.yml | 1 + .github/workflows/CI.yml | 69 +-- .github/workflows/README.md | 10 - CODEOWNERS | 2 - README.md | 147 +++-- action.yml | 38 +- dist/index.js | 120 ++--- index.js | 110 ++-- package-lock.json | 1018 +---------------------------------- package.json | 15 +- test/Dockerfile | 14 - test/Dockerfile.test | 14 - test/test.Dockerfile | 9 + 15 files changed, 234 insertions(+), 1351 deletions(-) * Fix path issue and broken link in README README.md | 4 +++- index.js | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) * Update dist/index.js dist/index.js | 1 + 1 file changed, 1 insertion(+) * Fix issue with contextName .github/workflows/CI.yml | 4 ++-- dist/index.js | 4 +++- index.js | 4 +++- 3 files changed, 8 insertions(+), 4 deletions(-) * Remove macOS from build matrix It doesn't have Docker installed by default, and installing for specifically macOS runners is useless at the moment. .github/workflows/CI.yml | 1 - 1 file changed, 1 deletion(-) * Update testing image to use Windows compatible base .github/workflows/CI.yml | 5 ----- test/test.Dockerfile | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) * Remove Windows from build matrix .github/workflows/CI.yml | 2 -- 1 file changed, 2 deletions(-) * Add Changelog.md Co-authored-by: ayalaluquez <blanca.ayala@kronoscode.com> Co-authored-by: Blanca Ayala <45976038+ayalaluquez@users.noreply.github.com>
- Loading branch information
1 parent
3388e8a
commit 6467451
Showing
14 changed files
with
247 additions
and
1,271 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* @matootie |
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 +1 @@ | ||
github: [matootie, 123FLO321] | ||
github: matootie |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: "GitHub Docker" | ||
on: | ||
push: | ||
paths: | ||
- ".github/workflows/CI.yml" | ||
- "dist/index.js" | ||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-16.04 | ||
- ubuntu-18.04 | ||
- ubuntu-20.04 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Run the action | ||
uses: ./ | ||
id: publish | ||
with: | ||
accessToken: ${{ github.token }} | ||
imageName: action-test | ||
tag: | | ||
latest-${{ matrix.os }} | ||
test-${{ matrix.os }} | ||
buildArgs: | | ||
TESTARG1=test1 | ||
TESTARG2=test2 | ||
context: test/ | ||
contextName: test.Dockerfile |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Changelog | ||
|
||
### v3.0.0 | ||
|
||
* `contextName` can now be specified for GitHub Docker to find Dockerfiles with custom names. | ||
* Removed `username` input. | ||
* Renamed `repositoryName` to just `repository`. | ||
* Replaced `imageTag` with `tag`. Multiple tags can be specified via newline. | ||
* Tag now defaults to `latest`, as appose to commit SHA. | ||
* Removed `imageTagPrefix` and `imageTagSuffix` inputs. |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.