Skip to content

Commit

Permalink
More updates
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-bsaviano committed Nov 3, 2023
1 parent 39cf73b commit 8d99163
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ jobs:
prerelease: ${{ github.event_name != 'release' }}
token: ${{ secrets.GITHUB_TOKEN }}
files: ${{ needs.build.outputs.name }}.vsix
body: |
Changes in this release
${{ needs.build.outputs.changelog }}
publish:
needs: build
if: github.event_name == 'release' && needs.build.outputs.taggedbranch == 'master'
Expand All @@ -126,7 +123,7 @@ jobs:
git add package.json
git commit -m 'auto bump version with release'
jq --arg version "$VERSION" '.version = $version' package.json > "$tmp" && mv "$tmp" package.json
jq '.enableProposedApi = false' package.json > "$tmp" && mv "$tmp" package.json
jq 'del(.enableProposedApi,.enabledApiProposals)' package.json > "$tmp" && mv "$tmp" package.json
npm install
git push
- name: Build package
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,6 @@ jobs:
prerelease: ${{ github.event_name != 'release' }}
token: ${{ secrets.GITHUB_TOKEN }}
files: ${{ needs.build.outputs.name }}.vsix
body: |
Changes in this pre-release
${{ needs.build.outputs.changelog }}
publish:
needs: build
if: github.event_name == 'release' && needs.build.outputs.taggedbranch == 'prerelease'
Expand Down

0 comments on commit 8d99163

Please sign in to comment.