We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0ccbb3 commit a8ab040Copy full SHA for a8ab040
.circleci/config.yml
@@ -134,14 +134,20 @@ jobs:
134
CONTAINER_PHP_VERSION: "7.3"
135
deploy_job:
136
docker:
137
- - image: wordpress:php7.3-fpm-alpine
138
- working_directory: /root/project/phpcompat
+ - image: circleci/buildpack-deps:latest
139
steps:
140
- - run: apk add --no-cache git subversion rsync
141
- checkout
+ - run:
+ name: Install dependencies
142
+ command: sudo apt-get install rsync -qq
143
144
+ name: Create artifacts directory
145
+ command: mkdir -p /tmp/artifacts
146
- run:
147
name: Deploy plugin to wordpress.org
148
command: /bin/bash .circleci/deploy.sh
149
+ - store_artifacts:
150
+ path: /tmp/artifacts
151
152
workflows:
153
version: 2
0 commit comments