From 13a1d80a89501bd9ccdf3f7bb3fdc8233317be11 Mon Sep 17 00:00:00 2001 From: Josef Vyhnanek Date: Mon, 3 Feb 2025 22:26:40 +0100 Subject: [PATCH] Added CD workflow --- .github/workflows/cd.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/cd.yml diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml new file mode 100644 index 0000000000..22e8377b70 --- /dev/null +++ b/.github/workflows/cd.yml @@ -0,0 +1,23 @@ +name: cd + +on: + push: + branches: [main] + +jobs: + deploy: + name: Deploy + runs-on: ubuntu-latest + + + steps: + - name: Check out code + uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: "1.23.0" + + - name: Build App + run: ./scripts/buildprod.sh \ No newline at end of file