├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── NOTES.md ├── README.md ├── SAMPLE-action.ps1 ├── SAMPLE-action.yml ├── _init └── index.js ├── invoke-pwsh.js ├── package.json └── tests └── GitHubActions_tests.ps1 /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebekker/pwsh-github-action-base/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebekker/pwsh-github-action-base/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebekker/pwsh-github-action-base/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebekker/pwsh-github-action-base/HEAD/NOTES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebekker/pwsh-github-action-base/HEAD/README.md -------------------------------------------------------------------------------- /SAMPLE-action.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebekker/pwsh-github-action-base/HEAD/SAMPLE-action.ps1 -------------------------------------------------------------------------------- /SAMPLE-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebekker/pwsh-github-action-base/HEAD/SAMPLE-action.yml -------------------------------------------------------------------------------- /_init/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebekker/pwsh-github-action-base/HEAD/_init/index.js -------------------------------------------------------------------------------- /invoke-pwsh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebekker/pwsh-github-action-base/HEAD/invoke-pwsh.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebekker/pwsh-github-action-base/HEAD/package.json -------------------------------------------------------------------------------- /tests/GitHubActions_tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebekker/pwsh-github-action-base/HEAD/tests/GitHubActions_tests.ps1 --------------------------------------------------------------------------------