Skip to content
This repository has been archived by the owner on Oct 19, 2023. It is now read-only.

Commit

Permalink
Use different docker image name for ubuntu package builder (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
Takashi Matsuo authored and chingor13 committed Apr 24, 2018
1 parent a41e47a commit 3ffb64d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ubuntu-package-builder/build-packages.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
steps:
- name: gcr.io/cloud-builders/docker
args: ['build', '-t', 'gcr.io/${_GOOGLE_PROJECT_ID}/deb-package-builder', '.']
args: ['build', '-t', 'gcr.io/${_GOOGLE_PROJECT_ID}/ubuntu-package-builder', '.']
waitFor: ['-']
id: deb-package-builder
id: ubuntu-package-builder

# create local directories for the rsync
- name: gcr.io/google-appengine/debian8
Expand Down Expand Up @@ -31,9 +31,9 @@ steps:
id: import-packages

# build the packages
- name: gcr.io/${_GOOGLE_PROJECT_ID}/deb-package-builder
- name: gcr.io/${_GOOGLE_PROJECT_ID}/ubuntu-package-builder
args: ['${_PHP_VERSION}']
waitFor: ['deb-package-builder', 'import-libraries', 'import-packages']
waitFor: ['ubuntu-package-builder', 'import-libraries', 'import-packages']
id: package-build

# export artifacts to gs
Expand Down

0 comments on commit 3ffb64d

Please sign in to comment.