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
2 changes: 1 addition & 1 deletion .github/workflows/cleanup_acceptance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
cleanup:
runs-on: ubuntu-latest
container: quay.io/hypernode/deploy:4-php8.3-node20
container: quay.io/hypernode/deploy:latest-php8.3-node20
environment: acceptance
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
jobs:
build:
runs-on: ubuntu-latest
container: quay.io/hypernode/deploy:4-php8.3-node20
container: quay.io/hypernode/deploy:latest-php8.3-node20
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
name: acceptance
url: ${{ steps.get_brancher_hostname.outputs.BRANCHER_URL }}
if: github.ref != 'refs/heads/master'
container: quay.io/hypernode/deploy:4-php8.3-node20
container: quay.io/hypernode/deploy:latest-php8.3-node20
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
name: production
url: https://docs.hypernode.io
if: github.ref == 'refs/heads/master'
container: quay.io/hypernode/deploy:4-php8.3-node20
container: quay.io/hypernode/deploy:latest-php8.3-node20
steps:
- uses: actions/checkout@v3
- name: download build artifact
Expand Down
8 changes: 4 additions & 4 deletions docs/hypernode-deploy/getting-started/configure-ci-cd.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ env:
jobs:
build:
runs-on: ubuntu-latest
# Here we use the Hypernode Deploy v4 image with PHP 8.3 and Node.js 20
container: quay.io/hypernode/deploy:4-php8.3-node20
# Here we use the latest Hypernode Deploy image with PHP 8.3 and Node.js 20
container: quay.io/hypernode/deploy:latest-php8.3-node20
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
Expand Down Expand Up @@ -137,8 +137,8 @@ jobs:
deploy:
needs: build
runs-on: ubuntu-latest
# Here we use the Hypernode Deploy v4 image with PHP 8.3 and Node.js 20
container: quay.io/hypernode/deploy:4-php8.3-node20
# Here we use the latest Hypernode Deploy image with PHP 8.3 and Node.js 20
container: quay.io/hypernode/deploy:latest-php8.3-node20
steps:
- uses: actions/checkout@v2
- name: download build artifact
Expand Down
8 changes: 3 additions & 5 deletions docs/hypernode-deploy/pipelines/bitbucket-pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ Create the file `bitbucket-pipelines.yml` with the contents below.
This workflow will be used in other workflows.

```yaml
image: quay.io/hypernode/deploy:4-php8.3-node20
# Here we use the latest Hypernode Deploy image with PHP 8.3 and Node.js 20
image: quay.io/hypernode/deploy:latest-php8.3-node20

definition:
steps:
Expand All @@ -74,10 +75,7 @@ definition:
Don't forget to set the specifications of the image to what your project needs. The same goes for the deploy steps.
For example, if your project needs PHP 8.3 and Node.js 20, set the image to:
```yaml
jobs:
build:
container: quay.io/hypernode/deploy:4-php8.3-node20
...
image: quay.io/hypernode/deploy:latest-php8.3-node20
```
````

Expand Down
9 changes: 5 additions & 4 deletions docs/hypernode-deploy/pipelines/github-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container: quay.io/hypernode/deploy:4-php8.3-node20
# See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags.
container: quay.io/hypernode/deploy:latest-php8.3-node20
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
Expand All @@ -82,7 +83,7 @@ For example, if your project needs PHP 8.3 and Node.js 20, set the image to:
```yaml
jobs:
build:
container: quay.io/hypernode/deploy:4-php8.3-node20
container: quay.io/hypernode/deploy:latest-php8.3-node20
...
```
````
Expand Down Expand Up @@ -112,7 +113,7 @@ jobs:
environment:
name: production
url: https://www.example.com
container: quay.io/hypernode/deploy:4-php8.3-node20
container: quay.io/hypernode/deploy:latest-php8.3-node20
steps:
- uses: actions/checkout@v3
- name: download build artifact
Expand Down Expand Up @@ -156,7 +157,7 @@ jobs:
environment:
name: acceptance
url: https://acceptance.example.com
container: quay.io/hypernode/deploy:4-php8.3-node20
container: quay.io/hypernode/deploy:latest-php8.3-node20
steps:
- uses: actions/checkout@v3
- name: download build artifact
Expand Down
4 changes: 2 additions & 2 deletions docs/hypernode-deploy/pipelines/gitlab-ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ This sets the container image, defines the CI/CD stages and defines the build st

```yaml
# See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags.
image: quay.io/hypernode/deploy:4-php8.3-node20
image: quay.io/hypernode/deploy:latest-php8.3-node20

stages:
- build
Expand All @@ -72,7 +72,7 @@ build:
Don't forget to set the specifications of the image to what your project needs.
For example, if your project needs PHP 8.3 and Node.js 16, set the image to:
```yaml
image: quay.io/hypernode/deploy:3-php8.3-node16
image: quay.io/hypernode/deploy:latest-php8.3-node16
```
````

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ defaults:
jobs:
build:
runs-on: ubuntu-latest
container: quay.io/hypernode/deploy:4-php8.3-node20
container: quay.io/hypernode/deploy:latest-php8.3-node20
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
Expand All @@ -186,7 +186,7 @@ jobs:
deploy_staging:
needs: build
runs-on: ubuntu-latest
container: quay.io/hypernode/deploy:4-php8.3-node20
container: quay.io/hypernode/deploy:latest-php8.3-node20
steps:
- uses: actions/checkout@v2
- name: download build artifact
Expand Down