Skip to content

Fixes error message that appears when deleting open PDS #998

Fixes error message that appears when deleting open PDS

Fixes error message that appears when deleting open PDS #998

name: Report VSIX Artifact in PR
on:
pull_request:
paths:
- packages/zowe-explorer/**
- packages/zowe-explorer-api/**
- .github/workflows/report-artifact-pr.yml
- .github/resources/artifact-template.hbs
permissions:
contents: write
pull-requests: write
jobs:
build-ze-artifact:
runs-on: ubuntu-22.04
timeout-minutes: 60
if: (!contains(github.event.head_commit.message, '[ci skip]'))
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- run: npm install -g pnpm
- run: pnpm config set network-timeout 60000 && pnpm install
- run: pnpm build
id: build
- name: Package VSIX
run: pnpm package
working-directory: packages/zowe-explorer
- name: Archive VSIX artifact
uses: actions/upload-artifact@v4
with:
name: zowe-explorer-vsix
path: dist/*.vsix
- name: Report VSIX artifact
uses: bitonality/[email protected]
continue-on-error: true
with:
comment-mode: 'CreateOrUpdate'
handlebars-template: '.github/resources/artifact-template.hbs'