-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: include dot-files support in glob selection (#9)
- Loading branch information
1 parent
96db681
commit 0ade358
Showing
6 changed files
with
3,430 additions
and
91 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,4 +103,5 @@ lib/**/* | |
octo | ||
out | ||
reports/ | ||
testpkgs/ | ||
testpkgs/ | ||
.idea/ |
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,27 @@ | ||
# Building for testing | ||
|
||
To test a branch in GitHub Actions, an updated `dist/index.js` file is required. | ||
|
||
``` | ||
npm run build | ||
git add dist/. | ||
git commit -m "updating index.js" | ||
git log -q -n 1 dist/index.js | less -F | ||
``` | ||
|
||
From the log output take note of the commit hash and push to GitHub | ||
|
||
In a test GitHub action you can use the branched build of the action by referencing the branch or commit hash, see [here](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsuses) for details on the `uses` syntax. | ||
|
||
``` | ||
- name: Create Zip Package for Octopus Deploy | ||
# You may pin to the exact commit or the version. | ||
uses: OctopusDeploy/create-zip-package-action@my-branch | ||
with: | ||
package_id: output | ||
version: 1.0.0 | ||
output_folder: ./pack | ||
base_path: . | ||
files: | | ||
**/* | ||
``` |
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
Oops, something went wrong.