Wrap paths to resolve with double quote #890
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
on: pull_request | |
jobs: | |
release: | |
name: Validation | |
runs-on: ubuntu-latest | |
if: contains(github.event.pull_request.labels.*.name, 'build') | |
steps: | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- run: npm install | |
- run: npm run lint | |
- run: npm install -g vsce | |
- name: Create build | |
run: npm run package | |
- name: Upload build | |
uses: actions/upload-artifact@v2 | |
with: | |
name: code-for-ibmi-pr-build | |
path: ./*.vsix | |
- name: Post comment | |
uses: actions/github-script@v5 | |
with: | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: 'π A new build is available for this PR based on ${{ github.event.pull_request.head.sha }}.\n * [Download here.](https://github.com/halcyon-tech/vscode-ibmi/actions/runs/${{ github.run_id }})\n* [Read more about how to test](https://github.com/halcyon-tech/vscode-ibmi/blob/master/.github/pr_testing_template.md)' | |
}) |