Skip to content

Commit

Permalink
Merge pull request #38 from ByteInternet/update_configuration_templates
Browse files Browse the repository at this point in the history
  • Loading branch information
tdgroot authored Oct 26, 2023
2 parents 3628d27 + 8fcb023 commit 2a8f5d2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion templates/.gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags.
image: quay.io/hypernode/deploy:2.0-php8.1-node18
image: quay.io/hypernode/deploy:3-php8.2-node18

stages:
- build
Expand Down
2 changes: 1 addition & 1 deletion templates/bitbucket-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags.
image: quay.io/hypernode/deploy:2.0-php8.1-node18
image: quay.io/hypernode/deploy:3-php8.2-node18

pipelines:
branches:
Expand Down
14 changes: 7 additions & 7 deletions templates/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ env:
jobs:
build:
runs-on: ubuntu-latest
container: quay.io/hypernode/deploy:2.0-php8.1-node18
container: quay.io/hypernode/deploy:3-php8.2-node18
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-composer
- uses: webfactory/ssh-agent@v0.5.4
- uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- run: hypernode-deploy build -vvv
Expand All @@ -37,15 +37,15 @@ jobs:
deploy:
needs: build
runs-on: ubuntu-latest
container: quay.io/hypernode/deploy:2.0-php8.1-node18
container: quay.io/hypernode/deploy:3-php8.2-node18
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: download build artifact
uses: actions/download-artifact@v3
with:
name: deployment-build
path: build/
- uses: webfactory/ssh-agent@v0.5.4
- uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- run: mkdir -p $HOME/.ssh
Expand Down

0 comments on commit 2a8f5d2

Please sign in to comment.