From cb05e8229e5349a0ad635ecc9e67c3956a222e99 Mon Sep 17 00:00:00 2001 From: Mike Gerber Date: Thu, 3 Dec 2020 17:03:30 +0100 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=9A=A7=20Test=20GitHub=20Actions=20bu?= =?UTF-8?q?ild?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..b0cae23 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: Test + +on: + release: + types: [created] + +env: + + +jobs: + build: + name: Setup, Build, Publish, and Deploy + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Build + run: |- + FORCE_DOWNLOAD=y ./build From 972e03974c09017e6a0b56c3b447e0de091b748d Mon Sep 17 00:00:00 2001 From: Mike Gerber Date: Thu, 3 Dec 2020 17:05:38 +0100 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=9A=A7=20Test=20GitHub=20Actions=20bu?= =?UTF-8?q?ild?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b0cae23..77aa064 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,8 +1,6 @@ name: Test -on: - release: - types: [created] +on: push env: From d30b1130c23af9110e79f3d6af42008229bff0cf Mon Sep 17 00:00:00 2001 From: Mike Gerber Date: Thu, 3 Dec 2020 17:06:24 +0100 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=9A=A7=20Test=20GitHub=20Actions=20bu?= =?UTF-8?q?ild?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 77aa064..f9c159a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,9 +2,6 @@ name: Test on: push -env: - - jobs: build: name: Setup, Build, Publish, and Deploy