Skip to content

Commit

Permalink
chore: publish artifacts to website
Browse files Browse the repository at this point in the history
  • Loading branch information
SkReD committed Oct 28, 2022
1 parent c27bbc4 commit 3e9b761
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
PVM_LL: silly

permissions:
contents: read
contents: write
pull-requests: write
issues: write

Expand Down
4 changes: 4 additions & 0 deletions update-hints.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
release-type = 'patch'

[force-release]
packages = ['*']
2 changes: 1 addition & 1 deletion website/download-pvm-packages.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const __filename = fileURLToPath(import.meta.url);

const pvmPackages = (await drainItems.default(pkgset('all', {
cwd: path.join(path.dirname(__filename), '..')
}))).map(pkg => ({
}))).filter(pkg => !pkg.meta.private).map(pkg => ({
name: pkg.name,
version: pkg.version,
tgz: `${pkg.shortName}-${pkg.version}.tgz`,
Expand Down

0 comments on commit 3e9b761

Please sign in to comment.