From af310105a9348a97d5a703feca76ad656256183c Mon Sep 17 00:00:00 2001 From: ILoveYaToo Date: Sun, 27 Dec 2020 02:28:26 -0500 Subject: [PATCH] fix impropper workflow usage --- .semaphore/semaphore.yml | 4 ++-- .semaphore/tests.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.semaphore/semaphore.yml b/.semaphore/semaphore.yml index 7ca353f..2b97234 100644 --- a/.semaphore/semaphore.yml +++ b/.semaphore/semaphore.yml @@ -14,14 +14,14 @@ blocks: - cd alpine - 'docker build --network=host -t catdeployed/postal:alpine .' - docker save -o postal-alpine-container.tar catdeployed/postal:alpine - - artifact push job postal-alpine-container.tar --expire-in 1d + - artifact push workflow postal-alpine-container.tar --expire-in 1d - name: 'Ubuntu' commands: - checkout - cd ubuntu - 'docker build --network=host -t catdeployed/postal:ubuntu .' - docker save -o postal-ubuntu-container.tar catdeployed/postal:ubuntu - - artifact push job postal-ubuntu-container.tar --expire-in 1d + - artifact push workflow postal-ubuntu-container.tar --expire-in 1d promotions: - name: Default Promotion pipeline_file: tests.yml diff --git a/.semaphore/tests.yml b/.semaphore/tests.yml index 150af36..7dc45e7 100644 --- a/.semaphore/tests.yml +++ b/.semaphore/tests.yml @@ -12,17 +12,17 @@ blocks: commands: - checkout - cd alpine - - artifact pull job postal-alpine-container.tar + - artifact pull workflow postal-alpine-container.tar - docker load -i postal-alpine-container.tar - docker-compose up -d - 'for i in {1..20}; do [ $(docker inspect postal | jq ''.[].State.Health.Status'') == "healthy" ] && break || sleep 15; done' - - artifact yank job job postal-alpine-container.tar + - artifact yank workflow postal-alpine-container.tar - name: 'Ubuntu Test' commands: - checkout - cd ubuntu - - artifact pull job postal-ubuntu-container.tar + - artifact pull workflow postal-ubuntu-container.tar - docker load -i postal-ubuntu-container.tar - docker-compose up -d - 'for i in {1..20}; do [ $(docker inspect postal | jq ''.[].State.Health.Status'') == "healthy" ] && break || sleep 15; done' - - artifact yank job job postal-ubuntu-container.tar + - artifact yank workflow postal-ubuntu-container.tar