From 3d80165b41725da80a8127154e933923e80a8c1d Mon Sep 17 00:00:00 2001 From: Johannes Rudolph <johannes.rudolph@gmx.com> Date: Tue, 22 Mar 2016 14:32:28 +0100 Subject: [PATCH] add deploy --- .gitlab-ci.yml | 14 +++++++++++--- build/deploy.sh | 3 +++ 2 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 build/deploy.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 87caea8..0bc2784 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,17 +3,25 @@ before_script: stages: - build + - deploy -nightly-ar71xx-generic: +ar71xx-generic: stage: build tags: - firmware script: - bash build/build-ar71xx-generic.sh -nightly-ar71xx-nand: +ar71xx-nand: stage: build tags: - firmware script: - - bash build/build-ar71xx-generic.sh \ No newline at end of file + - bash build/build-ar71xx-generic.sh + +deploy: + stage: deploy + tags: + - firmware + script: + - bash build/deploy.sh \ No newline at end of file diff --git a/build/deploy.sh b/build/deploy.sh new file mode 100644 index 0000000..5a9bd71 --- /dev/null +++ b/build/deploy.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +ls output/images/factory \ No newline at end of file -- GitLab