Skip to content

Commit a8ab040

Browse files
committed
Updated deploy job with new container and added artifacts.
1 parent f0ccbb3 commit a8ab040

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.circleci/config.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,14 +134,20 @@ jobs:
134134
CONTAINER_PHP_VERSION: "7.3"
135135
deploy_job:
136136
docker:
137-
- image: wordpress:php7.3-fpm-alpine
138-
working_directory: /root/project/phpcompat
137+
- image: circleci/buildpack-deps:latest
139138
steps:
140-
- run: apk add --no-cache git subversion rsync
141139
- checkout
140+
- run:
141+
name: Install dependencies
142+
command: sudo apt-get install rsync -qq
143+
- run:
144+
name: Create artifacts directory
145+
command: mkdir -p /tmp/artifacts
142146
- run:
143147
name: Deploy plugin to wordpress.org
144148
command: /bin/bash .circleci/deploy.sh
149+
- store_artifacts:
150+
path: /tmp/artifacts
145151

146152
workflows:
147153
version: 2

0 commit comments

Comments
 (0)