Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
run: |
sudo apt install -y sshpass jq

- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand All @@ -106,7 +106,7 @@ jobs:
runs-on: self-hosted
needs: setup-runner
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand All @@ -127,7 +127,7 @@ jobs:
Configure your container's fundamental settings:

```yaml
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand Down Expand Up @@ -189,7 +189,7 @@ manage-container:
runs-on: self-hosted
needs: setup-runner
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand Down Expand Up @@ -220,7 +220,7 @@ manage-container:
runs-on: self-hosted
needs: setup-runner
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:
- name: Install Dependencies
run: |
sudo apt install -y sshpass jq
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand All @@ -365,7 +365,7 @@ jobs:
runs-on: self-hosted
needs: setup-runner
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand Down Expand Up @@ -404,7 +404,7 @@ jobs:
- name: Install Dependencies
run: |
sudo apt install -y sshpass jq
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand All @@ -414,7 +414,7 @@ jobs:
runs-on: self-hosted
needs: setup-runner
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand Down Expand Up @@ -448,7 +448,7 @@ jobs:
- name: Install Dependencies
run: |
sudo apt install -y sshpass jq
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand All @@ -458,7 +458,7 @@ jobs:
runs-on: self-hosted
needs: setup-runner
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
manage-container:
runs-on: self-hosted # Use your runner label here
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: your-username
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand All @@ -77,7 +77,7 @@ This creates basic containers without automatic deployment.
Configure your container's fundamental settings:

```yaml
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: your-username
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand Down Expand Up @@ -133,7 +133,7 @@ If you want Proxmox Launchpad to automatically deploy your application, consider
For applications with a single service (React app, Flask server, etc.):

```yaml
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: your-username
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand All @@ -159,7 +159,7 @@ For applications with a single service (React app, Flask server, etc.):
For applications with multiple services (frontend + backend, microservices, etc.):

```yaml
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: your-username
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
manage-container:
runs-on: self-hosted
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: your-username
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:
manage-container:
runs-on: self-hosted
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: your-username
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand Down Expand Up @@ -338,7 +338,7 @@ jobs:
manage-container:
runs-on: self-hosted
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: your-username
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Proxmox Launchpad is a powerful GitHub Action that automatically provisions and
![Proxmox Launchpad Marketplace Image](./img/proxmox-launchpad-page.png)

:::note Public Marketplace Page
The link to Proxmox Launchpad on the GitHub Actions Marketplace Site is [https://github.com/marketplace/actions/proxmox-launchpad](https://github.com/marketplace/actions/proxmox-launchpad)
The link to Proxmox Launchpad on the GitHub Actions Marketplace Site is [https://github.com/marketplace/actions/mieweb-launchpad](https://github.com/marketplace/actions/mieweb-launchpad)
:::
## Key Features

Expand Down
4 changes: 2 additions & 2 deletions mie-opensource-landing/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const config: Config = {
position: "left",
},
{
to: "https://github.com/marketplace/actions/proxmox-launchpad",
to: "https://github.com/marketplace/actions/mieweb-launchpad",
label: "Proxmox Launchpad",
position: "left",
},
Expand Down Expand Up @@ -124,7 +124,7 @@ const config: Config = {
},
{
label: "Proxmox Launchpad Source",
href: "https://github.com/maxklema/proxmox-launchpad",
href: "https://github.com/mieweb/launchpad",
},
{
label: "Mieweb Github Organization",
Expand Down
12 changes: 6 additions & 6 deletions mie-opensource-landing/launchpad_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
manage-container:
runs-on: self-hosted # or your runner label
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
run: |
sudo apt install -y sshpass jq

- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
Expand All @@ -178,7 +178,7 @@ jobs:
runs-on: self-hosted
needs: setup-runner
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
Expand Down Expand Up @@ -304,7 +304,7 @@ jobs:
manage-container:
runs-on: self-hosted # Use your own runner
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
Expand Down Expand Up @@ -332,7 +332,7 @@ jobs:
- name: Install Dependencies
run: |
sudo apt install -y sshpass jq
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
Expand All @@ -342,7 +342,7 @@ jobs:
runs-on: self-hosted
needs: setup-runner
steps:
- uses: maxklema/proxmox-launchpad@main
- uses: mieweb/launchpad@main
with:
proxmox_password: ${{ secrets.PROXMOX_PASSWORD }}
proxmox_username: ${{ secrets.PROXMOX_USERNAME }}
Expand Down
Loading