mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
chore: rename artifacts to podman-desktop.*
Change-Id: I2f2137eed23d841a2b0800739ffad842277f343a Signed-off-by: Florent Benoit <fbenoit@redhat.com>
This commit is contained in:
parent
e4281c5e19
commit
61d5574915
9 changed files with 21 additions and 20 deletions
|
|
@ -26,8 +26,8 @@ if (process.env.VITE_APP_VERSION === undefined) {
|
|||
* @see https://www.electron.build/configuration/configuration
|
||||
*/
|
||||
const config = {
|
||||
productName: "container-desktop",
|
||||
appId: "com.github.containers.desktop",
|
||||
productName: "Podman Desktop",
|
||||
appId: "com.github.containers.desktop",
|
||||
directories: {
|
||||
output: 'dist',
|
||||
buildResources: 'buildResources',
|
||||
|
|
@ -40,10 +40,10 @@ const config = {
|
|||
'packages/main/src/assets/**',
|
||||
],
|
||||
portable: {
|
||||
artifactName: '${productName}-${version}.${ext}'
|
||||
artifactName: 'podman-desktop-${version}.${ext}'
|
||||
},
|
||||
nsis: {
|
||||
artifactName: '${productName}-${version}-setup.${ext}'
|
||||
artifactName: 'podman-desktop-${version}-setup.${ext}'
|
||||
},
|
||||
win: {
|
||||
target: [
|
||||
|
|
|
|||
15
.github/workflows/pr-check.yaml
vendored
15
.github/workflows/pr-check.yaml
vendored
|
|
@ -61,7 +61,7 @@ jobs:
|
|||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: windows-exe
|
||||
path: ./dist/container-desktop*.exe
|
||||
path: ./dist/podman-desktop*.exe
|
||||
|
||||
linux:
|
||||
name: Linux
|
||||
|
|
@ -99,8 +99,8 @@ jobs:
|
|||
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: linux-tgz
|
||||
path: ./dist/container-desktop-*.tar.gz
|
||||
name: linux
|
||||
path: ./dist/podman-desktop-*.tar.gz
|
||||
|
||||
darwin:
|
||||
name: macOS
|
||||
|
|
@ -138,8 +138,13 @@ jobs:
|
|||
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: macos-dmg
|
||||
path: ./dist/container-desktop-*.dmg
|
||||
name: macos-x64-dmg
|
||||
path: ./dist/podman-desktop-*x64.dmg
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: macos-arm64-dmg
|
||||
path: ./dist/podman-desktop-*arm64.dmg
|
||||
|
||||
|
||||
lint-format:
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@ Find latest binaries for Windows, MacOS and Linux on https://github.com/containe
|
|||
|
||||
There are `next` builds produced after each commit in main branch.
|
||||
|
||||
⚠️ For now the binaries are not signed.
|
||||
|
||||
For macOS it may require to perform this additional step: `xattr -r -d com.apple.quarantine container-desktop.app`
|
||||
|
||||
## Roadmap
|
||||
Upcoming milestones are defined with GitHub issue tracker.
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
"publisher": "benoitf",
|
||||
"license": "apache-2.0",
|
||||
"engines": {
|
||||
"container-desktop": "^0.0.1"
|
||||
"podman-desktop": "^0.0.1"
|
||||
},
|
||||
"main": "./dist/extension.js",
|
||||
"source": "./src/extension.ts",
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
"publisher": "benoitf",
|
||||
"license": "apache-2.0",
|
||||
"engines": {
|
||||
"container-desktop": "^0.0.1"
|
||||
"podman-desktop": "^0.0.1"
|
||||
},
|
||||
"main": "./dist/extension.js",
|
||||
"contributes": {
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
"publisher": "benoitf",
|
||||
"license": "apache-2.0",
|
||||
"engines": {
|
||||
"container-desktop": "^0.0.1"
|
||||
"podman-desktop": "^0.0.1"
|
||||
},
|
||||
"main": "./dist/extension.js",
|
||||
"contributes": {
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
"publisher": "benoitf",
|
||||
"license": "apache-2.0",
|
||||
"engines": {
|
||||
"container-desktop": "^0.0.1"
|
||||
"podman-desktop": "^0.0.1"
|
||||
},
|
||||
"main": "./dist/extension.js",
|
||||
"contributes": {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "container-desktop",
|
||||
"name": "podman-desktop",
|
||||
"version": "0.0.2-next",
|
||||
"license": "apache-2.0",
|
||||
"private": true,
|
||||
|
|
|
|||
|
|
@ -123,8 +123,8 @@ export class ExtensionLoader {
|
|||
}
|
||||
|
||||
async start() {
|
||||
// add watcher to the $HOME/container-desktop
|
||||
const pluginsDirectory = path.resolve(os.homedir(), '.local/share/container-desktop/plugins');
|
||||
// add watcher to the $HOME/podman-desktop
|
||||
const pluginsDirectory = path.resolve(os.homedir(), '.local/share/podman-desktop/plugins');
|
||||
if (fs.existsSync(pluginsDirectory)) {
|
||||
// add watcher
|
||||
fs.watch(pluginsDirectory, (_, filename) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue