mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-05-24 10:18:53 +00:00
fix: publish @podman-extension/api package (#9061)
Signed-off-by: Denis Golovin <dgolovin@redhat.com>
This commit is contained in:
parent
4dfd4bc712
commit
40ecb8de58
2 changed files with 14 additions and 0 deletions
7
.github/workflows/next-build.yaml
vendored
7
.github/workflows/next-build.yaml
vendored
|
|
@ -216,3 +216,10 @@ jobs:
|
|||
echo "Using version ${{ needs.tag.outputs.desktopVersion }}"
|
||||
sed -i "s#version\":\ \"\(.*\)\",#version\":\ \"${{ needs.tag.outputs.desktopVersion }}\",#g" tests/playwright/package.json
|
||||
cd tests/playwright && pnpm build && pnpm publish --tag next --no-git-checks --access public
|
||||
|
||||
- name: Publish Podman Extension API to npmjs
|
||||
run: |
|
||||
echo "Using version ${{ needs.tag.outputs.desktopVersion }}"
|
||||
sed -i "s#version\":\ \"\(.*\)\",#version\":\ \"${{ needs.tag.outputs.desktopVersion }}\",#g" extensions/podman/packages/api/package.json
|
||||
cd extensions/podman/packages/api
|
||||
pnpm publish --tag next --no-git-checks --access public
|
||||
|
|
|
|||
7
.github/workflows/release.yaml
vendored
7
.github/workflows/release.yaml
vendored
|
|
@ -257,3 +257,10 @@ jobs:
|
|||
echo "Using version ${{ needs.tag.outputs.desktopVersion }}"
|
||||
sed -i "s#version\":\ \"\(.*\)\",#version\":\ \"${{ needs.tag.outputs.desktopVersion }}\",#g" tests/playwright/package.json
|
||||
cd tests/playwright && pnpm build && pnpm publish --tag latest --no-git-checks --access public
|
||||
|
||||
- name: Publish Podman Extension API to npmjs
|
||||
run: |
|
||||
echo "Using version ${{ needs.tag.outputs.desktopVersion }}"
|
||||
sed -i "s#version\":\ \"\(.*\)\",#version\":\ \"${{ needs.tag.outputs.desktopVersion }}\",#g" extensions/podman/packages/api/package.json
|
||||
cd extensions/podman/packages/api
|
||||
pnpm publish --tag latest --no-git-checks --access public
|
||||
|
|
|
|||
Loading…
Reference in a new issue